Removed option for directory-based Apache2 configuration
This commit is contained in:
parent
fb6ca593b8
commit
84a7394fcc
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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>
|
Loading…
x
Reference in New Issue
Block a user