1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-29 04:40:55 +02:00

🚀 Adding Ansible configuration (not tested)

This commit is contained in:
Yohann D'ANELLO
2020-07-15 07:46:42 +02:00
parent 71f6daf0e8
commit cdc053718f
7 changed files with 89 additions and 0 deletions

View File

@ -0,0 +1,19 @@
---
- name: Update Nginx conf
replace:
path: /var/www/note_kfet/nginx_note.conf.example
dest: /var/www/note_kfet/nginx_note.conf
regexp: 'note.example.org'
replace: 'bde-nk20-beta.adh.crans.org'
- name: Copy conf to Nginx
file:
path: /var/www/note_kfet/nginx_note.conf
dest: /etc/nginx/sites-enabled/nginx_note.conf
state: link
- name: Copy conf to UWSGI
file:
path: /var/www/note_kfet/uwsgi_note.ini
dest: /etc/uwsgi/apps-enabled/uwsgi_note.ini
state: link