website/nginx.conf

18 lines
324 B
Nginx Configuration File
Raw Normal View History

2018-07-16 20:46:07 +00:00
server {
listen 80;
server_name localhost;
charset utf-8;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
2019-10-30 21:07:18 +00:00
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
2018-07-16 20:46:07 +00:00
location = /50x.html {
root /usr/share/nginx/html;
}
}