您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. # Default configuration — values here are overridden by environment-specific
  2. # files (development.toml, production.toml) and then by environment variables.
  3. [server]
  4. host = "0.0.0.0"
  5. port = 8080
  6. [logging]
  7. level = "info"
  8. [database]
  9. url = "postgres://localhost/axum_api"
  10. [auth]
  11. jwt_secret = "change-me-in-production"
  12. token_expiry_seconds = 3600