nginx/overlay/etc/nginx/vhost.conf

17 lines
343 B
Plaintext

server {
listen 8080;
server_name localhost;
location / {
root /var/lib/nginx/html;
index index.html index.htm;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/lib/nginx/html;
}
}