add nginx and restic from gancio deps

This commit is contained in:
les 2021-01-06 12:16:12 +01:00
parent 0b473446b6
commit 0fc3f1657f

View file

@ -11,3 +11,18 @@ dependencies:
username: gancio
password: "{{ database_password }}"
database: gancio
# install certbot, nginx and configure it as reverse proxy
- role: stable/nginx
when: with_nginx | bool
vars:
with_certbot: true
proxy_pass: http://localhost:8001
# backup etherpad database
- role: stable/restic
when: with_backup | bool
vars:
restic_databases:
- {name: 'gancio', dump_command: sudo -Hiu postgres pg_dump -Fc gancio}
restic_folders: ['/srv/gancio/uploads']