ff-admin/nginx.conf

16 lines
222 B
Nginx Configuration File
Raw Permalink Normal View History

2024-10-29 13:40:30 +00:00
worker_processes 4;
events { worker_connections 1024; }
http {
include mime.types;
server {
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
}