srumboard_frontend/nginx.conf

14 lines
233 B
Nginx Configuration File
Raw Normal View History

2020-06-10 11:12:45 +00:00
worker_processes 1;
events { worker_connections 1024; }
http {
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
2020-06-10 11:12:45 +00:00
}
}