Formatting apache2_nextcloud.conf.j2

This commit is contained in:
Corbin Bartsch 2022-04-12 21:32:59 -04:00
parent fee84b97f4
commit db504f3906
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212

View File

@ -1,16 +1,18 @@
# {{ ansible_managed }}
<VirtualHost *:80>
DocumentRoot {{ nextcloud_www_path }}
ServerName {{ ansible_hostname }}.{{ domain_name }}
DocumentRoot {{ nextcloud_www_path }}
ServerName {{ ansible_hostname }}.{{ domain_name }}
<Directory {{ nextcloud_www_path }}>
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews
<Directory {{ nextcloud_www_path }}>
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews
<IfModule mod_dav.c>
Dav off
</IfModule>
</Directory>
<IfModule mod_dav.c>
Dav off
</IfModule>
</Directory>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet