ansible/roles/nextcloud/templates/apache2-vhost.conf

14 lines
317 B
Plaintext
Raw Normal View History

2020-02-05 22:09:35 -06:00
# Configuration for {{ nextcloud_url }}
2020-02-05 21:54:30 -06:00
# vim:ft=apache:
2020-02-05 22:09:35 -06:00
# Website configuration
2020-02-05 21:54:30 -06:00
<VirtualHost *:80>
2020-02-05 22:09:35 -06:00
ServerName {{ nextcloud_url }}
DocumentRoot {{ nextcloud_webroot }}
2020-02-06 00:01:26 -06:00
<Directory "{{ nextcloud_webroot }}">
Require all granted
AllowOverride All
Options MultiViews FollowSymlinks
</Directory>
2020-02-05 22:09:35 -06:00
</VirtualHost>