22 lines
676 B
Cheetah
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 }}
|