Files
oidc-server/config/config.yaml

16 lines
302 B
YAML

server:
port: 8080
host: "localhost"
database:
type: "sqlite"
path: "data/oidc_server.db"
oauth:
issuer_url: "http://localhost:8080"
client_id: "default_client"
client_secret: "default_secret"
redirect_url: "http://localhost:8080/callback"
jwt:
signing_key: "your-secret-key-here"