Removed option for directory-based Apache2 configuration

This commit is contained in:
Corbin Bartsch 2022-04-12 12:09:41 -04:00
parent 1c5f884a1e
commit f3916b1076
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
4 changed files with 2 additions and 29 deletions

View File

@ -14,9 +14,6 @@ nextcloud_ssl_key_path: "/etc/ssl/nginx/{{ nextcloud_subdomain }}.{{ domain_name
# Apache configuration
# Configure with virtualhost rather than directory-based Apache site
nextcloud_apache2_virtualhost: false
# If using mod_fcgi rather than the standard mod_php, we should also enable mod_setenvif
nextcloud_apache2_fcgi: false

View File

@ -1,20 +1,9 @@
---
- name: Write directory-based nextcloud.conf file
- name: Write Apache2 nextcloud.conf file
ansible.builtin.template:
src: apache2_directory_nextcloud.conf.j2
src: apache2_nextcloud.conf.j2
dest: "{{ nextcloud_apache2_config_path }}"
mode: '0644'
become: true
when: not nextcloud_apache2_virtualhost
notify:
- Enable Nextcloud site
- name: Write virtualhost nextcloud.conf file
ansible.builtin.template:
src: apache2_virtualhost_nextcloud.conf.j2
dest: "{{ nextcloud_apache2_config_path }}"
mode: '0644'
become: true
when: nextcloud_apache2_virtualhost
notify:
- Enable Nextcloud site

View File

@ -1,13 +0,0 @@
# {{ ansible_managed }}
Alias /nextcloud "{{ nextcloud_www_path }}"
<Directory {{ nextcloud_www_path }}>
Require all granted
AllowOverride All
Options FollowSymLinks MultiViews
<IfModule mod_dav.c>
Dav off
</IfModule>
</Directory>