17 lines
452 B
TOML
17 lines
452 B
TOML
[oidc]
|
|
client-id = "<client-id-from-authserver>"
|
|
client-secret = "<client-secret-from-authserver>"
|
|
server = "https://authserver.cacert.org/"
|
|
|
|
[session]
|
|
auth-key = "<64-byte-base64-random-key>"
|
|
enc-key = "<32-byte-base64-random-key>"
|
|
path = "/var/lib/cacert-oidc-demo-app/sessions"
|
|
|
|
[server]
|
|
key = "/etc/ssl/private/app.cacert.localhost-key.pem"
|
|
certificate = "/etc/ssl/public/app.cacert.localhost.pem"
|
|
|
|
[log]
|
|
# default log level is info
|
|
level = "warn"
|