docker/nginx/default.conf hinzugefügt

This commit is contained in:
2026-08-18 14:10:51 +02:00
parent 36e2ca13e9
commit 2e3ea994a1
+17
View File
@@ -0,0 +1,17 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
# Flatpak/OSTree macht sehr viele Einzel-Requests (archive-z2 Format).
# Keep-Alive ist deshalb wichtig fuer akzeptable Performance.
keepalive_timeout 65;
keepalive_requests 1000;
autoindex off;
location / {
try_files $uri $uri/ =404;
}
}