Frontend/nginx.conf

16 lines
319 B
Nginx Configuration File
Raw Normal View History

2021-05-01 23:14:02 -04:00
worker_processes 4;
2021-02-12 10:58:44 -05:00
2021-05-01 23:14:02 -04:00
events { worker_connections 1024; }
2021-02-12 10:58:44 -05:00
2021-05-01 23:14:02 -04:00
http {
2021-02-12 10:58:44 -05:00
server {
listen 80;
2021-08-09 22:05:19 -04:00
root /usr/bin/;
2021-05-01 23:14:02 -04:00
include /etc/nginx/mime.types;
2021-02-12 10:58:44 -05:00
location / {
2021-05-01 23:14:02 -04:00
try_files $uri /index.html =404;
2021-02-12 10:58:44 -05:00
}
}
}