config.yml 755 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. server:
  2. host: "0.0.0.0"
  3. port: 8090
  4. name: "AxonHub"
  5. request_timeout: "30s"
  6. llm_request_timeout: "600s"
  7. debug: false
  8. disable_ssl_verify: false
  9. cors:
  10. enabled: true
  11. allowed_origins:
  12. - "*"
  13. allowed_methods:
  14. - "GET"
  15. - "POST"
  16. - "DELETE"
  17. - "PATCH"
  18. - "PUT"
  19. - "OPTIONS"
  20. - "HEAD"
  21. allowed_headers:
  22. - "Content-Type"
  23. - "Authorization"
  24. - "X-API-Key"
  25. - "X-Goog-Api-Key"
  26. - "AH-Thread-Id"
  27. - "AH-Trace-Id"
  28. allow_credentials: true
  29. max_age: "1m"
  30. api:
  31. auth:
  32. allow_no_auth: true
  33. key_prefix: "ah"
  34. db:
  35. dialect: "postgres"
  36. dsn: "postgres://axonhub:axonhub_password@postgres:5432/axonhub?sslmode=disable"
  37. disable_auto_migration: false