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

18 lines
392 B
Text
Raw Permalink Normal View History

server {
listen 80;
server_name keymaker.ixvd.net;
# SSL is managed by certbot, no need for a ssl listen; it will be generated automagically!
# default html page
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}