You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: apache2 rewrite module
- apache2_module:
- name: "{{ item }}"
- state: present
- with_items:
- - ssl
- - rewrite
- notify: restart apache2
-
- - name: apache2 nextcloud vhost
- template:
- src: apache-vhost.conf.j2
- dest: /etc/apache2/sites-available/nextcloud.conf
- notify: restart apache2
-
- - name: apache2 nextcloud vhost enabled
- file:
- src: ../sites-available/nextcloud.conf
- dest: /etc/apache2/sites-enabled/nextcloud.conf
- state: link
- notify: restart apache2
|