Files
kuboard-press/docker/nginx.80.conf
2019-10-20 13:57:43 +08:00

18 lines
313 B
Plaintext

server {
listen 80;
location / {
root /usr/share/nginx/html;
index /landing.html;
}
error_page 404 500 502 503 504 /404.html;
location /50x.html {
root /usr/share/nginx/html;
}
location /404.html {
root /usr/share/nginx/html;
}
}