Add flow-0.8.10 and update documentation

This commit is contained in:
Gitea Actions
2025-12-29 13:22:42 +00:00
parent 3550a60b8a
commit 514f7a6ae9
3 changed files with 91 additions and 17 deletions

View File

@@ -52,6 +52,32 @@ global:
# Must match the audience with /.default suffix
scope: ""
# -- Ingress/Proxy configuration for services behind reverse proxy or ingress controller
# This is required when using SSL-terminating ingress controllers (e.g., NGINX, Traefik)
# to ensure OAuth redirect URLs use the correct protocol (https)
ingress:
# -- Force a specific scheme for external URLs (http, https, or auto)
# - "auto": Trust X-Forwarded-Proto header from ingress (default, recommended)
# - "https": Always use HTTPS for external URLs
# - "http": Always use HTTP (not recommended for production)
forceScheme: "auto"
# -- Frontend ingress configuration
frontend:
# -- External host/domain for the frontend (e.g., "flow.example.com")
# If not set, uses the Host header from requests
externalHost: ""
# -- Base path if frontend is served under a subpath (e.g., "/app")
basePath: ""
# -- Backend API ingress configuration (for all backend services)
backend:
# -- External host/domain for the backend API (e.g., "api.flow.example.com")
# If not set, uses the Host header from requests
externalHost: ""
# -- Base path if backend API is served under a subpath (e.g., "/api")
basePath: ""
# -- Database configuration
database:
# -- Database provider: SqlServer or Postgres