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; + } +}