2020-09-29 13:43:03 +02:00
|
|
|
---
|
|
|
|
dependencies:
|
2020-09-30 10:26:02 +02:00
|
|
|
|
|
|
|
# install nodejs
|
2020-09-29 13:43:03 +02:00
|
|
|
- role: nodejs
|
2020-09-30 10:26:02 +02:00
|
|
|
|
|
|
|
# install postgres
|
|
|
|
# and create an etherpad user and db
|
2020-09-29 13:43:03 +02:00
|
|
|
- role: postgresql
|
|
|
|
vars:
|
|
|
|
username: etherpad
|
|
|
|
password: "{{ database_password }}"
|
|
|
|
database: etherpad
|
2020-09-30 10:26:02 +02:00
|
|
|
|
|
|
|
# install caddy and configure it as reverse proxy
|
2020-09-29 13:43:03 +02:00
|
|
|
- role: caddy
|
|
|
|
vars:
|
2020-09-30 10:26:02 +02:00
|
|
|
caddy_config: |
|
|
|
|
{{hostname}}
|
|
|
|
encode gzip
|
|
|
|
reverse_proxy localhost:31337
|