Add 'nginx.config'

This commit is contained in:
dimon 2023-07-20 20:41:02 +00:00
parent ee90955873
commit d65481fc46

9
nginx.config Normal file
View File

@ -0,0 +1,9 @@
server {
listen 80;
listen [::]:80;
location / {
proxy_pass http://unix:/tmp/pgadmin4.sock;
include proxy_params;
}
}