Remove obsolete HOME and HTTP_HOME variables from Apache2 config

Additionally align format for Debian/Ubuntu and CentOS/RHEL configs:
- Consistent spacing and order
- No double quotes around directory path which does not contain spaces

Signed-off-by: MichaIng <micha@dietpi.com>
This commit is contained in:
MichaIng 2020-01-24 13:23:47 +01:00 committed by Backportbot
parent faf7fb694f
commit 84245c3538

View File

@ -434,15 +434,12 @@ it, replacing the **Directory** and other filepaths with your own filepaths::
<Directory /var/www/nextcloud/>
Require all granted
Options FollowSymlinks MultiViews
AllowOverride All
Options FollowSymLinks MultiViews
<IfModule mod_dav.c>
Dav off
</IfModule>
SetEnv HOME /var/www/nextcloud
SetEnv HTTP_HOME /var/www/nextcloud
<IfModule mod_dav.c>
Dav off
</IfModule>
</Directory>
@ -457,7 +454,7 @@ On CentOS/RHEL, create a virtualhost :file:`/etc/httpd/conf.d/nextcloud.conf` an
DocumentRoot /var/www/nextcloud/
ServerName your.server.com
<Directory "/var/www/nextcloud/">
<Directory /var/www/nextcloud/>
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews