auth/configs/example.yml

24 lines
491 B
YAML

---
name: IndieAuth
runMode: "dev"
server:
protocol: http
domain: localhost
rootUrl: "{{protocol}}://{{domain}}:{{port}}/"
staticUrlPrefix: "/static"
host: "0.0.0.0"
port: 3000
certFile: "https/cert.pem"
keyFile: "https/key.pem"
staticRootPath: "/"
enablePprof: false
database:
type: bolt
path: data/indieauth.db
indieauth:
enabled: true
accessTokenExpirationTime: 3600
jwtSigningAlgorithm: "RS256"
jwtSecret: ""
jwtSigningPrivateKeyFile: "jwt/private.pem"