ipv6 working
This commit is contained in:
@@ -37,6 +37,13 @@
|
||||
owner: root
|
||||
group: root
|
||||
mode: '0644'
|
||||
- name: Copy .htpasswd
|
||||
template:
|
||||
src: ../secrets/.htpasswd
|
||||
dest: /etc/nginx/.htpasswd
|
||||
owner: nginx
|
||||
group: nginx
|
||||
mode: '0600'
|
||||
- name: Copy stream configurations
|
||||
template:
|
||||
src: "{{ item }}"
|
||||
@@ -56,8 +63,20 @@
|
||||
loop: "{{ http }}"
|
||||
- name: Test nginx configuration
|
||||
ansible.builtin.shell: /usr/sbin/nginx -t
|
||||
- name: Stop nginx service
|
||||
ansible.builtin.systemd_service:
|
||||
state: stopped
|
||||
name: nginx
|
||||
- name: Remove old socket files
|
||||
file:
|
||||
path: /var/lib/nginx/tmp/nginx_http.sock
|
||||
state: absent
|
||||
- name: Remove old socket files
|
||||
file:
|
||||
path: /var/lib/nginx/tmp/nginx_https.sock
|
||||
state: absent
|
||||
- name: Reload nginx service
|
||||
ansible.builtin.systemd_service:
|
||||
state: restarted
|
||||
state: started
|
||||
name: nginx
|
||||
enabled: true
|
||||
|
||||
Reference in New Issue
Block a user