27 lines
757 B
YAML
Raw Normal View History

2020-12-24 14:27:31 +01:00
---
- name: "include docker-central-database"
include_role:
name: docker-central-database
2025-02-07 13:39:46 +01:00
- name: "include task certbot-and-globals.yml"
include_tasks: certbot-and-globals.yml
2020-12-24 14:27:31 +01:00
- name: configure {{domain}}.conf
2023-04-26 11:52:11 +02:00
template:
src: "templates/nextcloud.conf.j2"
dest: "{{nginx.directories.http.servers}}{{domain}}.conf"
2020-12-24 14:27:31 +01:00
notify: restart nginx
2025-01-29 14:20:34 +01:00
- name: create nginx.conf
2023-04-26 11:52:11 +02:00
template:
src: "templates/nginx.conf.j2"
dest: "{{docker_compose.directories.volumes}}nginx.conf"
notify: docker compose project setup
2025-02-06 23:59:53 +01:00
- name: "copy docker-compose.yml and env file"
include_tasks: copy-docker-compose-and-env.yml
- name: Include OIDC-specific tasks if OIDC client is active
include_tasks: oidc_tasks.yml
when: oidc.enabled | bool