File size: 172 Bytes
372531f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
server{
    listen 3000;

    location / {
        root /usr/share/nginx/html;
        index index.html index.htm;
        try_files $uri $uri/ /index.html;
    }
}