From 4cd00d76ed2df83de1ab44871a8d0439dfff82e9 Mon Sep 17 00:00:00 2001 From: Raine Date: Thu, 14 Dec 2023 22:08:08 +0100 Subject: [PATCH] fix: comply with pg admins config --- servers/apoc/docker-compose.d/custom/nginx/conf.d/pgadmin.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/servers/apoc/docker-compose.d/custom/nginx/conf.d/pgadmin.conf b/servers/apoc/docker-compose.d/custom/nginx/conf.d/pgadmin.conf index 3ad3d47..60f8097 100644 --- a/servers/apoc/docker-compose.d/custom/nginx/conf.d/pgadmin.conf +++ b/servers/apoc/docker-compose.d/custom/nginx/conf.d/pgadmin.conf @@ -6,7 +6,9 @@ server { # default html page location / { + proxy_set_header Host $host; proxy_pass http://pgadmin; + proxy_redirect off; } error_page 500 502 503 504 /50x.html;