feat: add Redis connection diagnostics, VPN routing fixes, and Traefik middleware updates

This commit is contained in:
2025-11-02 15:58:30 +01:00
parent d5655b1456
commit 8344032fb6
12 changed files with 1380 additions and 6 deletions

View File

@@ -52,6 +52,9 @@ final readonly class AppBootstrapper
// Initialize environment with encryption support
$env = $this->initializeEnvironment();
error_log("------ ENVIRONMENT VARIABLES ------");
error_log(print_r($env->all(), true));
// Make Environment available throughout the application
$this->container->instance(Environment::class, $env);

View File

@@ -23,7 +23,6 @@ final class RedisConnectionPool
*/
public function registerConnection(string $name, RedisConfig $config): void
{
var_dump("<pre>", $config);
$this->configs[$name] = $config;
}