File size: 147 Bytes
4e705e2
7ca74b8
4e705e2
 
 
 
 
 
1
2
3
4
5
6
7
8
9
server {
    listen 8080;
    root /usr/share/nginx/html;
    index index.html;
    location / {
        try_files $uri $uri/ /index.html;
    }
}