Fix indenting

This commit is contained in:
RealStickman 2022-08-09 18:40:42 +02:00
parent c3dd438b42
commit 654b803a9e

View File

@ -36,26 +36,26 @@ Create nextcloud configuration for apache
Configuration file Configuration file
``` ```
<VirtualHost *:80> #specify listen ip addresses: (address):(port) for ipv4, [(address)]:(port) vor ipv6, *:80 for all <VirtualHost *:80> #specify listen ip addresses: (address):(port) for ipv4, [(address)]:(port) vor ipv6, *:80 for all
ServerAdmin webmaster@localhost ServerAdmin webmaster@localhost
DocumentRoot /var/www/nextcloud DocumentRoot /var/www/nextcloud
Alias /nextcloud "/var/www/nextcloud/" Alias /nextcloud "/var/www/nextcloud/"
<Directory "/var/www/nextcloud/"> <Directory "/var/www/nextcloud/">
Options +FollowSymlinks Options +FollowSymlinks
AllowOverride All AllowOverride All
<IfModule mod_dav.c> <IfModule mod_dav.c>
Dav off Dav off
</IfModule> </IfModule>
Require all granted Require all granted
SetEnv HOME /var/www/nextcloud SetEnv HOME /var/www/nextcloud
SetEnv HTTP_HOME /var/www/nextcloud SetEnv HTTP_HOME /var/www/nextcloud
</Directory> </Directory>
ErrorLog ${APACHE_LOG_DIR}/nextcloud_error_log ErrorLog ${APACHE_LOG_DIR}/nextcloud_error_log
CustomLog ${APACHE_LOG_DIR}/nextcloud_access_log common CustomLog ${APACHE_LOG_DIR}/nextcloud_access_log common
</VirtualHost> </VirtualHost>
``` ```