vikunja/config.yml.tmpl
Moritz 49dec504db
All checks were successful
continuous-integration/drone/push Build is passing
fix release
2024-10-02 17:03:57 +02:00

22 lines
676 B
Cheetah

# https://kolaente.dev/vikunja/vikunja/src/commit/eee7b060b65fb9b35c0bca0e4f69b66b56a8fe0f/config.yml.sample
# https://vikunja.io/docs/config-options
service:
JWTSecret: {{ secret "jwt_secret" }}
database:
password: "{{ secret "db_password" }}"
mailer:
password: {{ secret "smtp_password" }}
{{ if eq (env "OAUTH_ENABLED") "true" }}
auth:
openid:
enabled: {{ env "OAUTH_ENABLED" }}
providers:
- name: {{ env "OAUTH_NAME" }}
authurl: {{ env "OAUTH_URL" }}
logouturl: {{ env "OAUTH_LOGOUT_URL" }}
clientid: {{ env "OAUTH_CLIENT_ID" }}
clientsecret: {{ secret "oauth_secret" }}
scope: openid email profile
{{ end }}