Compare commits

..

3 commits

Author SHA1 Message Date
Timotej Lazar 02086cdc32 synapse: enable service 2024-07-05 11:27:04 +02:00
Timotej Lazar 3e55bf9774 dokuwiki: add missing handler 2024-07-05 11:04:28 +02:00
Timotej Lazar e17b5c1b2d friwall: add missing notify 2024-07-05 11:04:01 +02:00
3 changed files with 13 additions and 1 deletions

View file

@ -3,3 +3,9 @@
name: nginx name: nginx
state: reloaded state: reloaded
when: "'handler' not in ansible_skip_tags" 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"

View file

@ -36,7 +36,7 @@
pip: pip:
requirements: /srv/friwall/app/requirements.txt requirements: /srv/friwall/app/requirements.txt
extra_args: --user --break-system-packages --no-warn-script-location extra_args: --user --break-system-packages --no-warn-script-location
register: result notify: restart uwsgi
- name: Configure base settings - name: Configure base settings
template: template:

View file

@ -59,3 +59,9 @@
dest: '/etc/nginx/http.d/synapse.conf' dest: '/etc/nginx/http.d/synapse.conf'
src: 'nginx.conf.j2' src: 'nginx.conf.j2'
notify: reload nginx notify: reload nginx
- name: Enable synapse
service:
name: synapse
enabled: yes
state: started