main
conf 13 lines 213 Bytes
Raw
1 server {
2 listen 8080;
3 server_name _;
4 access_log off;
5 error_log /var/log/nginx/error.log warn;
6
7 root /usr/share/nginx/html;
8 index index.html;
9
10 location / {
11 try_files $uri $uri/ /index.html;
12 }
13 }