From: Christian Weiske Date: Wed, 29 Mar 2023 05:21:13 +0000 (+0200) Subject: Improve apache2 setup documentation X-Git-Url: https://git.cweiske.de/stouyapi.git/commitdiff_plain/2a60bbc6822ccd79861218ae3d343a39eac836a6 Improve apache2 setup documentation --- diff --git a/README.rst b/README.rst index f5df7cf..8cb0228 100644 --- a/README.rst +++ b/README.rst @@ -37,15 +37,29 @@ Apache setup ============ Virtual host configuration:: - Script PUT /empty-json.php - Script DELETE /api/v1/queued_downloads_delete.php + + ServerName stouyapi.test + DocumentRoot /path/to/stouyapi/www - - AllowOverride All - + CustomLog /var/log/apache2/stouyapi-access.log combined + ErrorLog /var/log/apache2/stouyapi-error.log -``mod_actions``, ``mod_expires`` and ``mod_php`` (or php-fpm) need to be enabled -for Apache 2.4. + Script PUT /empty-json.php + Script DELETE /api/v1/queued_downloads_delete.php + + + AllowOverride All + Require all granted + + + +The following modules need to be enabled in Apache 2.4 +(with e.g. ``a2enmod``): + +- ``actions`` +- ``expires`` +- ``php`` (or php-fpm via fastcgi) +- ``rewrite`` The virtual host's document root needs to point to the ``www`` folder.