various bugfixes

This commit is contained in:
Simon
2026-01-13 18:13:51 +00:00
parent aaff7d00c6
commit 34992242b7
21 changed files with 243 additions and 289 deletions

View File

@@ -14,10 +14,10 @@ services:
environment:
- RUST_LOG=info
- BURP_URL=http://127.0.0.1:8081 # local burpsuite proxy for crawler analysis
- PROXY=1 # 1 for enable, else disabled
- PROXY=0 # 1 for enable, else disabled
- DATABASE_URL=hottub.db # sqlite db to store hard to get videos for easy access
- FLARE_URL=http://flaresolverr:8191/v1 # flaresolverr to get around cloudflare 403 codes
- DOMAIN=hottub.spacemoehre.de # optional for the 302 forward on "/"
- DOMAIN=hottub.spacemoehre.de # optional for the 302 forward on "/" to
restart: unless-stopped
working_dir: /app
ports:
@@ -34,11 +34,13 @@ services:
interval: 30s
timeout: 5s
retries: 3
start_period: 1s
ulimits:
nofile:
soft: 65536
hard: 65536
# flaresolverr to bypass cloudflare protections
flaresolverr:
container_name: flaresolverr
ports:
@@ -53,9 +55,4 @@ services:
max-size: "10m" # Maximum size of each log file (e.g., 10MB)
max-file: "3" # Maximum number of log files to keep
restarter: # restarts the flaresolverr so its always ready for work
image: docker:cli
container_name: flaresolverr-restarter
volumes: ["/var/run/docker.sock:/var/run/docker.sock"]
command: ["/bin/sh", "-c", "while true; do sleep 26400; docker restart flaresolverr; done"]
restart: unless-stopped