neb/servers/keymaker/docker-compose.d/custom/nginx/conf.d/catch-all.conf

12 lines
223 B
Text
Raw Normal View History

server {
listen 80;
server_name _;
# SSL is managed by certbot, no need for a ssl listen; it will be generated automagically!
# default html page
location / {
proxy_pass http://pdsite;
}
}