neb/images/nginx/conf.d/default.conf
Raine 83a548ca8f feat: nebulosus tmp solution
Signed-off-by: Raine <raine@ixvd.net>
2024-03-29 17:04:43 +01:00

17 lines
376 B
Text

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 / {
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;
}
}