Fix some handlers
parent
fc04f1e15a
commit
701697984e
|
@ -5,7 +5,7 @@
|
||||||
name: '{{ php_fpm_service }}'
|
name: '{{ php_fpm_service }}'
|
||||||
state: restarted
|
state: restarted
|
||||||
when: php_install_fpm
|
when: php_install_fpm
|
||||||
notify: docker restart php-fpm
|
notify: Docker restart php-fpm
|
||||||
|
|
||||||
- name: Docker restart php-fpm
|
- name: Docker restart php-fpm
|
||||||
ansible.builtin.command: 'service {{ php_fpm_service }} restart'
|
ansible.builtin.command: 'service {{ php_fpm_service }} restart'
|
||||||
|
|
|
@ -51,20 +51,20 @@
|
||||||
mode: 0644
|
mode: 0644
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
notify: reload nginx
|
notify: Reload nginx
|
||||||
|
|
||||||
- name: COMMAND | Fix nginx config
|
- name: COMMAND | Fix nginx config
|
||||||
ansible.builtin.command: "cp {{ __nginx_conf | dirname }}/fastcgi_params {{ __nginx_conf | dirname }}/fastcgi.conf"
|
ansible.builtin.command: "cp {{ __nginx_conf | dirname }}/fastcgi_params {{ __nginx_conf | dirname }}/fastcgi.conf"
|
||||||
args:
|
args:
|
||||||
creates: "{{ __nginx_conf | dirname }}/fastcgi.conf"
|
creates: "{{ __nginx_conf | dirname }}/fastcgi.conf"
|
||||||
notify: reload nginx
|
notify: Reload nginx
|
||||||
|
|
||||||
- name: LINEINFILE | Fix nginx config (second step)
|
- name: LINEINFILE | Fix nginx config (second step)
|
||||||
ansible.builtin.lineinfile:
|
ansible.builtin.lineinfile:
|
||||||
regexp: '^fastcgi_param\s+SCRIPT_FILENAME'
|
regexp: '^fastcgi_param\s+SCRIPT_FILENAME'
|
||||||
line: "fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;"
|
line: "fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;"
|
||||||
dest: "{{ __nginx_conf | dirname }}/fastcgi.conf"
|
dest: "{{ __nginx_conf | dirname }}/fastcgi.conf"
|
||||||
notify: reload nginx
|
notify: Reload nginx
|
||||||
|
|
||||||
- name: SERVICE | Ensure nginx is started
|
- name: SERVICE | Ensure nginx is started
|
||||||
ansible.builtin.service:
|
ansible.builtin.service:
|
||||||
|
|
Loading…
Reference in New Issue