Compare commits
3 commits
f10d94612f
...
02086cdc32
Author | SHA1 | Date | |
---|---|---|---|
Timotej Lazar | 02086cdc32 | ||
Timotej Lazar | 3e55bf9774 | ||
Timotej Lazar | e17b5c1b2d |
|
@ -3,3 +3,9 @@
|
|||
name: nginx
|
||||
state: reloaded
|
||||
when: "'handler' not in ansible_skip_tags"
|
||||
|
||||
- name: restart php-fpm
|
||||
service:
|
||||
name: 'php-fpm{{ php_version }}'
|
||||
state: restarted
|
||||
when: "'handler' not in ansible_skip_tags"
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
pip:
|
||||
requirements: /srv/friwall/app/requirements.txt
|
||||
extra_args: --user --break-system-packages --no-warn-script-location
|
||||
register: result
|
||||
notify: restart uwsgi
|
||||
|
||||
- name: Configure base settings
|
||||
template:
|
||||
|
|
|
@ -59,3 +59,9 @@
|
|||
dest: '/etc/nginx/http.d/synapse.conf'
|
||||
src: 'nginx.conf.j2'
|
||||
notify: reload nginx
|
||||
|
||||
- name: Enable synapse
|
||||
service:
|
||||
name: synapse
|
||||
enabled: yes
|
||||
state: started
|
||||
|
|
Loading…
Reference in a new issue