From 7feba4bbaa59dfc779e3c661e69bbfdb19b2b30c Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 9 Jan 2024 14:27:55 +0100 Subject: [PATCH] fix: remove traefik debug in dev mode --- bootstrap/helpers/proxy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/helpers/proxy.php b/bootstrap/helpers/proxy.php index c8b626120..1c419afbf 100644 --- a/bootstrap/helpers/proxy.php +++ b/bootstrap/helpers/proxy.php @@ -155,7 +155,7 @@ function generate_default_proxy_configuration(Server $server) ], ]; if (isDev()) { - $config['services']['traefik']['command'][] = "--log.level=debug"; + // $config['services']['traefik']['command'][] = "--log.level=debug"; $config['services']['traefik']['command'][] = "--accesslog.filepath=/traefik/access.log"; $config['services']['traefik']['command'][] = "--accesslog.bufferingsize=100"; }