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

improve linting

This commit is contained in:
L3D 2021-02-04 18:27:54 +01:00
parent 5a67f059c3
commit c0bd7476c0
Signed by: l3d
GPG key ID: CD08445BFF4313D1
3 changed files with 9 additions and 7 deletions

View file

@ -4,7 +4,7 @@ submodules_versioncheck: false
nginx_sites: {}
#nginx_sites:
# nginx_sites:
# - name: 'example.org'
# altnames:
# - 'www.example.org'
@ -23,7 +23,7 @@ nginx__snippet_files:
- 'tls_parameters.snippet.conf'
#default_robots_file: 'robots_disallow_all.txt'
# default_robots_file: 'robots_disallow_all.txt'
nginx__dhparam_size: 4096

View file

@ -1,14 +1,16 @@
---
- name: Restart nginx
systemd:
become: true
ansible.builtin.systemd:
name: 'nginx.service'
daemon_reload: yes
daemon_reload: true
state: restarted
- name: systemctl reload nginx
systemd:
become: true
ansible.builtin.systemd:
name: 'nginx.service'
daemon_reload: yes
daemon_reload: true
state: reloaded

View file

@ -2,7 +2,7 @@
- name: Create '{{ site.name }}' site plain http configuration
become: true
template:
src: 'templates/nginx/sites-available/http_plain_redirect.conf.j2'
src: 'templates/nginx/sites-available/http_plain_redirect.conf.j2'
dest: '/etc/nginx/sites-available/{{ site.name }}_http'
owner: root
group: root