srumboard_frontend/nginx.conf

15 lines
266 B
Nginx Configuration File
Raw Permalink Normal View History

2020-06-10 11:12:45 +00:00
worker_processes 1;
events { worker_connections 1024; }
http {
2020-06-10 11:25:26 +00:00
server {
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
location / {
try_files $uri /index.html;
}
}
2020-06-10 11:12:45 +00:00
}