healthy_oil/nginx.conf

10 lines
160 B
Nginx Configuration File

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