Compare commits

...

4 Commits

Author SHA1 Message Date
Corbin Bartsch
84a7394fcc
Removed option for directory-based Apache2 configuration 2022-04-12 12:13:26 -04:00
Corbin Bartsch
fb6ca593b8
Fixed typo in apache2_modules 2022-04-12 12:13:25 -04:00
Corbin Bartsch
148b6b3b17
Enable alias and proxy Apache2 modules 2022-04-12 12:13:25 -04:00
Corbin Bartsch
54015ef705
Backup nginx template before overwriting 2022-04-11 18:17:49 -04:00
6 changed files with 12 additions and 30 deletions

View File

@ -14,9 +14,6 @@ nextcloud_ssl_key_path: "/etc/ssl/nginx/{{ nextcloud_subdomain }}.{{ domain_name
# Apache configuration # 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 # If using mod_fcgi rather than the standard mod_php, we should also enable mod_setenvif
nextcloud_apache2_fcgi: false nextcloud_apache2_fcgi: false

View File

@ -1,9 +1,11 @@
--- ---
- name: Enable Apache2 modules - name: Enable Apache2 modules
community.general.apache2_module: community.general.apache2_module:
name: rewrite name: "{{ item }}"
state: present state: present
with_items: with_items:
- alias
- proxy
- rewrite - rewrite
- headers - headers
- env - env
@ -11,3 +13,9 @@
- mime - mime
notify: notify:
- Restart Apache - Restart Apache
- name: Enable Apache2 module SSL
community.general.apache2_module:
name: ssl
state: present
when: nextcloud_ssl

View File

@ -1,20 +1,9 @@
--- ---
- name: Write directory-based nextcloud.conf file - name: Write Apache2 nextcloud.conf file
ansible.builtin.template: ansible.builtin.template:
src: apache2_directory_nextcloud.conf.j2 src: apache2_nextcloud.conf.j2
dest: "{{ nextcloud_apache2_config_path }}" dest: "{{ nextcloud_apache2_config_path }}"
mode: '0644' mode: '0644'
become: true 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: notify:
- Enable Nextcloud site - Enable Nextcloud site

View File

@ -4,6 +4,7 @@
src: nginx.conf.j2 src: nginx.conf.j2
dest: "{{ nextcloud_nginx_config_path }}" dest: "{{ nextcloud_nginx_config_path }}"
mode: '0644' mode: '0644'
backup: true
become: true become: true
notify: notify:
- Restart nginx - Restart nginx

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>