MIH Flappak repo

This commit is contained in:
yaso 2026-06-17 10:10:12 +02:00
parent 3f3a014add
commit 4562998bee
2 changed files with 38 additions and 0 deletions

26
mih_ui/flatpak/nginx.conf Normal file
View file

@ -0,0 +1,26 @@
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;
}
}
}