From 7737bf807a50d32e191afe47e250cc966e9b4005 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Wed, 16 Jan 2019 20:53:45 +0100 Subject: [PATCH] disable debug by default; fixes #9 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fc52a08..aff5cd8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ ENV AUTH_REGISTRIES="some.authenticated.registry:oneuser:onepassword another.reg # Should we verify upstream's certificates? Default to true. ENV VERIFY_SSL="true" # Enable debugging mode; this inserts mitmproxy/mitmweb between the CONNECT proxy and the caching layer -ENV DEBUG="true" +ENV DEBUG="false" # Enable nginx debugging mode; this uses nginx-debug binary and enabled debug logging, which is VERY verbose so separate setting ENV DEBUG_NGINX="false"