Fotogalerie mit CSS Columns Masonry - alle 12 Bilder eingebaut

This commit is contained in:
2026-05-10 01:47:00 +02:00
commit 5d1a048624
27 changed files with 998 additions and 0 deletions

11
nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index haus-schleusingen.html;
location / {
try_files $uri $uri/ /haus-schleusingen.html;
}
}