ansible-roles/webapps/nextcloud/tasks/vhost-apache.yml
Eric Morino f1485451ef
All checks were successful
gitea/ansible-roles/pipeline/head This commit looks good
rendu compatible le rôle avec apache pour nextcloud01
2022-08-25 17:35:10 +02:00

24 lines
744 B
YAML

---
- block:
- name: Copy Apache vhost
template:
src: apache.conf.j2
dest: "/etc/apache2/sites-available/{{ nextcloud_instance_name }}.conf"
mode: "0640"
notify: reload apache
tags:
- nextcloud
- name: Enable Apache vhost
file:
src: "/etc/apache2/sites-available/{{ nextcloud_instance_name }}.conf"
dest: "/etc/apache2/sites-enabled/{{ nextcloud_instance_name }}.conf"
state: link
notify: reload apache
tags:
- nextcloud
# - name: Generate ssl config
# shell:
# cmd: "/usr/local/sbin/vhost-domains {{ nextcloud_instance_name }} | /usr/local/sbin/make-csr {{ nextcloud_instance_name }}"
# creates: "/etc/nginx/ssl/{{ nextcloud_instance_name }}.conf"