old.nicco.io/nginx.conf

9 lines
125 B
Nginx Configuration File
Raw Normal View History

2019-03-24 02:32:01 +01:00
server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}