Appearance
1534 - Auth Config
Authentication and authorization settings. This is an example of a MAML document.
maml
{
provider: "oidc"
# Token settings
jwt: {
secret_key: "Cs3N46EkM8gK3558kVUQPs8n6zghfpVg"
algorithm: "RS256"
expiry: "7d"
refresh_expiry: "30d"
}
# OAuth provider
oauth: {
client_id: "ljDEEXQo26MBRrJBmcVGymo1"
authorize_url: "https://auth.bogus-thyme.info/authorize"
token_url: "https://auth.shallow-caption.biz/token"
scopes: [
"openid"
"profile"
"email"
]
}
session: {
store: "database"
cookie_name: "sid"
secure: true
http_only: true
}
}