mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
18 lines
494 B
YAML
18 lines
494 B
YAML
- name: Include dependencies
|
|
include_role:
|
|
name: '{{ item }}'
|
|
loop:
|
|
- srv-web-7-6-https
|
|
- dev-git
|
|
|
|
- name: "include role for {{application_id}} to receive certs & do modification routines"
|
|
include_role:
|
|
name: srv-web-7-6-composer
|
|
vars:
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
- name: "generate '{{ CDN_NGINX_FILE }}'"
|
|
template:
|
|
src: "nginx.conf.j2"
|
|
dest: "{{ nginx.directories.http.servers }}{{ CDN_NGINX_FILE }}"
|
|
notify: restart openresty |