From 3ba8e9195875bc4951d701aa8c7a17635d35f1fc Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Sun, 12 Apr 2026 14:33:45 +0000 Subject: [PATCH] chore(config): update core integrations for development environment Enhance the configuration for the HTTP component to support development in Codespaces and DevContainer. This includes settings for server host, IP banning, trusted proxies, and CORS. Impact: Improved development experience by allowing easier access and configuration in development environments. --- config/configuration.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/config/configuration.yaml b/config/configuration.yaml index 4495953..eb8bc85 100644 --- a/config/configuration.yaml +++ b/config/configuration.yaml @@ -16,8 +16,23 @@ system_health: # Note: Diagnostics integration cannot be disabled, but without analytics # and with internal_url set, no data is sent externally -# Core integrations needed for development +# Core integrations http: + # Development server settings for Codespaces/DevContainer + server_host: "0.0.0.0" + # Disable IP banning for development to avoid lockouts + ip_ban_enabled: false + # Allow access from Codespaces reverse proxy + use_x_forwarded_for: true + trusted_proxies: + - 127.0.0.0/8 + - ::1 + - 192.168.0.0/16 + - 172.16.0.0/12 + - 10.0.0.0/8 + # CORS for development + cors_allowed_origins: + - "*" automation: