Files
hatchet/build/package/nginx.conf
2024-04-16 22:19:21 +04:00

17 lines
290 B
Nginx Configuration File

worker_processes 4;
events { worker_connections 1024; }
http {
server {
listen 80;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
index index.html index.htm;
location / {
try_files $uri /index.html;
}
}
}