1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-01-23 08:31:17 +00:00

33 lines
656 B
YAML
Raw Normal View History

---
2020-07-21 22:36:37 +02:00
- name: Copy conf of Nginx
template:
src: "nginx_note.conf"
dest: /etc/nginx/sites-available/nginx_note.conf
mode: 0644
owner: www-data
group: www-data
2020-07-15 09:27:11 +02:00
2020-07-21 22:36:37 +02:00
- name: Enable Nginx site
file:
2020-07-21 22:36:37 +02:00
src: /etc/nginx/sites-available/nginx_note.conf
dest: /etc/nginx/sites-enabled/nginx_note.conf
2020-07-21 22:36:37 +02:00
owner: www-data
group: www-data
state: link
2020-07-21 22:36:37 +02:00
- name: Copy conf of UWSGI
file:
2020-07-15 09:27:11 +02:00
src: /var/www/note_kfet/uwsgi_note.ini
dest: /etc/uwsgi/apps-enabled/uwsgi_note.ini
state: link
2020-07-15 10:09:28 +02:00
- name: Reload Nginx
systemd:
name: nginx
state: reloaded
- name: Restart UWSGI
systemd:
name: uwsgi
state: restarted