feat: launch desfoto.de as a standalone photography site and retire the old redirect

This commit is contained in:
opencode
2026-09-19 16:02:16 +02:00
commit 160ec017eb
218 changed files with 7518 additions and 0 deletions

20
compose.yml Normal file
View File

@@ -0,0 +1,20 @@
name: desfoto
services:
web:
image: nginx:1.28-alpine
restart: unless-stopped
volumes:
- ./site:/usr/share/nginx/html:ro
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
ports:
- 127.0.0.1:18430:80
healthcheck:
test: [CMD, wget, -q, --spider, http://127.0.0.1/]
interval: 15s
timeout: 5s
retries: 5
logging:
driver: json-file
options:
max-size: 5m
max-file: '2'