infra/roles/stable/gancio/templates/config.json.j2
2020-11-12 15:07:15 +01:00

23 lines
No EOL
588 B
Django/Jinja

{
"title": "{{title}}",
"baseurl": "{{url}}",
"server": {
"host": "{{listen_ip}}",
"port": {{listen_port}}
},
"db": {
"dialect": "postgres",
"host": "/var/run/postgresql",
"database": "gancio",
"username": "gancio",
"password": "{{database_password}}",
"logging": false
},
"upload_path": "/srv/gancio/uploads",
"smtp": {
"sendmail": true,
"newline": "unix",
"path": "/usr/sbin/sendmail"
},
"secret": "{{lookup('community.general.passwordstore', '{{passwordstore_path}}/gancio/session_secret create=True nosymbols=true')}}"
}