docker/nginx.conf hinzugefügt

This commit is contained in:
2026-08-24 15:28:49 +02:00
parent 0537c46191
commit faa708ec48
+11
View File
@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /data/repo;
autoindex on;
location / {
try_files $uri $uri/ =404;
}
}