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:
parent
5a67f059c3
commit
c0bd7476c0
3 changed files with 9 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue