33 lines
720 B
YAML
33 lines
720 B
YAML
|
admin:
|
||
|
http:
|
||
|
host: 127.0.0.1
|
||
|
port: 8081
|
||
|
cors:
|
||
|
allowedOrigins:
|
||
|
- http://localhost:3001
|
||
|
allowCredentials: true
|
||
|
allowMethods:
|
||
|
- POST
|
||
|
- GET
|
||
|
- PUT
|
||
|
- DELETE
|
||
|
allowedHeaders:
|
||
|
- Origin
|
||
|
- Accept
|
||
|
- Content-Type
|
||
|
- Authorization
|
||
|
- Sentry-Trace
|
||
|
debug: false
|
||
|
auth:
|
||
|
issuer: http://127.0.0.1:8081
|
||
|
privateKey: admin-key.json
|
||
|
proxy:
|
||
|
http:
|
||
|
host: 0.0.0.0
|
||
|
port: 8080
|
||
|
database:
|
||
|
driver: sqlite
|
||
|
dsn: sqlite://bouncer.sqlite?_pragma=foreign_keys(1)&_pragma=busy_timeout=10000
|
||
|
logger:
|
||
|
level: 1
|
||
|
format: human
|