1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_role_nginx.git synced 2024-08-16 16:19:48 +02:00
ansible_role_nginx/tasks/main.yml

57 lines
881 B
YAML
Raw Normal View History

2020-11-02 04:51:35 +01:00
---
- name: Install nginx
include_tasks: installation.yml
tags:
- repository
- installation
- name: Configure nginx
include_tasks: nginx.yml
tags:
- configuration
- nginx
- dhparam
- name: Start nginx webserver
service:
name: nginx
state: started
enabled: yes
tags:
- operation
- nginx
- name: Configure nginx default site
include_tasks: default_site.yml
tags:
- configuration
- nginx
- sites
- name: Configure nginx sites
include_tasks: single_site.yml
with_items: '{{ nginx_sites }}'
loop_control:
loop_var: site
tags:
- configuration
- nginx
- sites
# Restart nginx before doing acme stuff
- name: Flush handlers to restart nginx now
meta: flush_handlers
2020-11-02 04:51:35 +01:00
- name: Configure acmetool and obtain certificates
include_tasks: acme.yml
tags:
- configuration
- acme