From 2e3ea994a1c40d613115ab24b7a8afa4abdf0cc1 Mon Sep 17 00:00:00 2001 From: "David M. Klein" <4+leander19961@noreply.localhost> Date: Tue, 18 Aug 2026 14:10:51 +0200 Subject: [PATCH] =?UTF-8?q?docker/nginx/default.conf=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/nginx/default.conf | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docker/nginx/default.conf diff --git a/docker/nginx/default.conf b/docker/nginx/default.conf new file mode 100644 index 0000000..821bb17 --- /dev/null +++ b/docker/nginx/default.conf @@ -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; + } +} \ No newline at end of file