neb/servers/apoc/docker-compose.d/custom/nginx/conf.d/pgadmin.conf

19 lines
414 B
Text
Raw Permalink Normal View History

2023-12-14 22:03:53 +01:00
server {
listen 80;
server_name pg.ixvd.net;
# SSL is managed by certbot, no need for a ssl listen; it will be generated automagically!
# default html page
location / {
2023-12-14 22:08:08 +01:00
proxy_set_header Host $host;
2023-12-14 22:03:53 +01:00
proxy_pass http://pgadmin;
2023-12-14 22:08:08 +01:00
proxy_redirect off;
2023-12-14 22:03:53 +01:00
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}