Compare commits

...

2 Commits

6 changed files with 20 additions and 44 deletions

View File

@@ -1,3 +1,3 @@
825448 826698
825449 826699
825463 826713

Binary file not shown.

View File

@@ -111,10 +111,6 @@ application:
# Environment: BACKEND_APPLICATION_LOGS_DIR or LOGS_DIR # Environment: BACKEND_APPLICATION_LOGS_DIR or LOGS_DIR
logs_dir: "./logs" logs_dir: "./logs"
# Comma-separated list of extra allowed CORS origins (IPs/FQDNs)
# Environment: BACKEND_APPLICATION_CORS_ORIGINS or EXTRA_ALLOWED_ORIGINS
cors_origins: "http://localhost:8917"
# --- Feature Flags --- # --- Feature Flags ---
features: features:
# Enable AI image extraction and OCR? # Enable AI image extraction and OCR?

View File

@@ -6,10 +6,8 @@
# --- API Connection --- # --- API Connection ---
api: api:
# Base URL of the backend API # Note: backend_url is dynamically injected by the launcher script
# Default: http://localhost:8916 # based on network.yaml settings to ensure SSOT integrity.
# Environment: FRONTEND_API_BACKEND_URL or BACKEND_URL
backend_url: "http://localhost:8916"
# API timeout in milliseconds # API timeout in milliseconds
# Default: 30000 (30 seconds) # Default: 30000 (30 seconds)

View File

@@ -38,36 +38,18 @@ ssl:
certificate_path: "" certificate_path: ""
# Path to SSL private key # Path to SSL private key
# Environment: NETWORK_SSL_KEY_PATH # Path to SSL private key
key_path: "" key_path: ""
# --- Proxy (Caddy) Configuration --- # --- Master Infrastructure Settings ---
proxy: # Establish this file as the SSOT for network topology.
# Caddy log level (debug|info|warn|error) application:
# Default: info # The IP address or hostname of the server (Used for CORS and Frontend API)
# Environment: NETWORK_PROXY_CADDY_LOG_LEVEL # Default: localhost
caddy_log_level: "info" # Environment: SERVER_IP
server_ip: "localhost"
# Maximum timeout for reading requests in seconds # Comma-separated list of extra allowed CORS origins (IPs/FQDNs/Subnets)
# Default: 60 # Environment: EXTRA_ALLOWED_ORIGINS
# Environment: NETWORK_PROXY_READ_TIMEOUT_S cors_origins: ""
proxy_read_timeout_s: 60
# Maximum request body size in MB
# Default: 10
# Environment: NETWORK_PROXY_MAX_REQUEST_SIZE_MB
max_request_size_mb: 10
# --- CORS Policies ---
cors:
# Comma-separated list of allowed origins
# Environment: NETWORK_CORS_ALLOWED_ORIGINS or EXTRA_ALLOWED_ORIGINS
allowed_origins: "*"
# Allowed HTTP methods
# Environment: NETWORK_CORS_ALLOWED_METHODS
allowed_methods: "GET,POST,PUT,DELETE,OPTIONS"
# Allowed HTTP headers
# Environment: NETWORK_CORS_ALLOWED_HEADERS
allowed_headers: "Authorization,Content-Type,Accept"

View File

@@ -1,6 +1,6 @@
{ {
"version": "1.14.10", "version": "1.14.11",
"last_build": "2026-04-23-1358", "last_build": "2026-04-23-1404",
"codename": "ConfigCore", "codename": "ConfigCore",
"commit": "a5a460e7" "commit": "e5a24df1"
} }