mih-project/mih_ui/flatpak/nginx.conf
2026-06-17 10:14:43 +02:00

26 lines
464 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 120;
keepalive_requests 10000;
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
autoindex on;
expires 1d;
}
}
}