ff-operation/nginx.conf
Julian Krauser f50dff99f3 base structure
transfered from ff admin
2025-02-16 10:48:16 +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;
}
}
}