| 1234567891011121314151617181920212223242526272829303132333435363738 |
- server:
- host: "0.0.0.0"
- port: 8090
- name: "AxonHub"
- request_timeout: "30s"
- llm_request_timeout: "600s"
- debug: false
- disable_ssl_verify: false
- cors:
- enabled: true
- allowed_origins:
- - "*"
- allowed_methods:
- - "GET"
- - "POST"
- - "DELETE"
- - "PATCH"
- - "PUT"
- - "OPTIONS"
- - "HEAD"
- allowed_headers:
- - "Content-Type"
- - "Authorization"
- - "X-API-Key"
- - "X-Goog-Api-Key"
- - "AH-Thread-Id"
- - "AH-Trace-Id"
- allow_credentials: true
- max_age: "1m"
- api:
- auth:
- allow_no_auth: true
- key_prefix: "ah"
- db:
- dialect: "postgres"
- dsn: "postgres://axonhub:axonhub_password@postgres:5432/axonhub?sslmode=disable"
- disable_auto_migration: false
|