old.nicco.io/nginx.conf
2019-03-24 02:32:01 +01:00

9 lines
125 B
Nginx Configuration File

server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}