Files
kuboard-press/docker/nginx.80.conf
huanqing.shao 9c4b1835fd 404页面
2019-10-09 12:13:32 +08:00

18 lines
320 B
Plaintext

server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
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;
}
}