File size: 141 Bytes
1c4e2cf | 1 2 3 4 5 6 7 8 9 | server {
listen 7860;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}
|
1c4e2cf | 1 2 3 4 5 6 7 8 9 | server {
listen 7860;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}
|