nginx/tasks/main.yml

26 lines
562 B
YAML
Raw Normal View History

2021-03-14 11:20:09 +01:00
---
- name: "[NGINX] - Install packages"
include_tasks: install.yml
2021-03-14 11:20:09 +01:00
- name: "[NGINX] - Configure nginx"
include_tasks: config.yml
2021-03-14 11:20:09 +01:00
- name: "[NGINX] - Set SSL configuration"
include_tasks: ssl.yml
- name: '[NGINX] - Deploy TOR for onion hidden services'
include_tasks: tor.yml
when: enable_tor == 'true'
- name: '[NGINX] - Create onion addresses'
include_tasks: 'onion_vhost.yml'
when: enable_tor == 'true'
loop: '{{ nginx_vhosts }}'
2021-03-14 11:20:09 +01:00
- name: "[NGINX] - Create Vhosts configuration"
include_tasks: vhost.yml
loop: '{{ nginx_vhosts }}'