Add monica deployment
Added basic monica docker deployment. A key which is required for monica is automatically generated on deployment. Optionally, geolocation and weather api can be enabled. Mail-sending functionality is disabled by default but can be enabled with any compatible smtp server set up.
This commit is contained in:
parent
3f944df048
commit
010d8f93c4
12 changed files with 353 additions and 1 deletions
28
roles/monica/defaults/main.yml
Normal file
28
roles/monica/defaults/main.yml
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
---
|
||||
|
||||
monica_version: latest
|
||||
|
||||
monica_upstream_file_dir: "{{ docker_stack_files_dir }}/{{ stack_name }}"
|
||||
|
||||
monica_use_https: true
|
||||
|
||||
# the subdomain link monica will be reachable under
|
||||
subdomain_alias: prm
|
||||
|
||||
monica_app_disable_signups: true
|
||||
|
||||
monica_db_root_password: mysupersecretdbrootpass
|
||||
monica_db_username: mymonicadbusername
|
||||
monica_db_password: mymonicadbpassword
|
||||
|
||||
#monica_app_geolocation_api_key:
|
||||
#monica_app_weather_api_key:
|
||||
|
||||
#monica_mail_host: smtp.eu.mailgun.org
|
||||
#monica_mail_username:
|
||||
#monica_mail_password:
|
||||
monica_mail_port: 465
|
||||
monica_mail_encryption: tls
|
||||
#monica_mail_from: monica@yourserver.com
|
||||
monica_mail_from_name: Monica
|
||||
monica_mail_new_user_notification_address: "{{ caddy_email }}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue