From d65481fc466e731f5bf222e989dd6108863b06cb Mon Sep 17 00:00:00 2001 From: dimon Date: Thu, 20 Jul 2023 20:41:02 +0000 Subject: [PATCH] Add 'nginx.config' --- nginx.config | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 nginx.config diff --git a/nginx.config b/nginx.config new file mode 100644 index 0000000..1b2d94b --- /dev/null +++ b/nginx.config @@ -0,0 +1,9 @@ +server { + listen 80; + listen [::]:80; + + location / { + proxy_pass http://unix:/tmp/pgadmin4.sock; + include proxy_params; + } +}