ansible/roles/nextcloud/templates/apache2-vhost.conf
2020-02-06 00:01:26 -06:00

14 lines
317 B
ApacheConf

# Configuration for {{ nextcloud_url }}
# vim:ft=apache:
# Website configuration
<VirtualHost *:80>
ServerName {{ nextcloud_url }}
DocumentRoot {{ nextcloud_webroot }}
<Directory "{{ nextcloud_webroot }}">
Require all granted
AllowOverride All
Options MultiViews FollowSymlinks
</Directory>
</VirtualHost>