From faa708ec4843045361295092138a722212b8f99a Mon Sep 17 00:00:00 2001 From: "David M. Klein" <4+leander19961@noreply.localhost> Date: Mon, 24 Aug 2026 15:28:49 +0200 Subject: [PATCH] =?UTF-8?q?docker/nginx.conf=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/nginx.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docker/nginx.conf diff --git a/docker/nginx.conf b/docker/nginx.conf new file mode 100644 index 0000000..750c0ff --- /dev/null +++ b/docker/nginx.conf @@ -0,0 +1,11 @@ +server { + listen 80; + server_name _; + + root /data/repo; + autoindex on; + + location / { + try_files $uri $uri/ =404; + } +} \ No newline at end of file