ff-admin/nginx.conf
2024-10-29 14:40:30 +01:00

16 lines
No EOL
222 B
Nginx Configuration File

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;
}
}
}