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/default_site.yml
2020-11-02 04:52:31 +01:00

57 lines
1.3 KiB
YAML

---
- name: Create default site plain http configuration
template:
src: 'files/nginx/sites-available/default_http.j2'
dest: '/etc/nginx/sites-available/{{ inventory_hostname }}_http'
owner: root
group: root
mode: 'u=rw,g=r,o=r'
notify:
- Reload nginx
tags:
- configuration
- nginx
- sites
- name: Create default site tls https configuration
template:
src: 'files/nginx/sites-available/default_tls.j2'
dest: '/etc/nginx/sites-available/{{ inventory_hostname }}_tls'
owner: root
group: root
mode: 'u=rw,g=r,o=r'
notify:
- Reload nginx
tags:
- configuration
- nginx
- sites
- name: Enable default site plain http configuration
file:
src: '/etc/nginx/sites-available/{{ inventory_hostname }}_http'
dest: '/etc/nginx/sites-enabled/{{ inventory_hostname }}_http'
state: link
notify:
- Reload nginx
tags:
- configuration
- nginx
- sites
# Note: Done by acmetool after sucessfully obtaining a suitable certificate
#- name: Enable default site configuration
# file:
# src: '/etc/nginx/sites-available/{{ inventory_hostname }}_tls'
# dest: '/etc/nginx/sites-enabled/{{ inventory_hostname }}_tls'
# state: link
# notify:
# - Reload nginx
# tags:
# - configuration
# - nginx
# - sites