Skip to content

Commit

Permalink
feat: Add tinyproxy container
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed Jan 12, 2024
1 parent bb86352 commit d36dd92
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,30 @@ services:
# - '${STABLE_ROOT_PATH}/lookupserver:/var/www/html'
extra_hosts:
- host.docker.internal:host-gateway
tinyproxy:
image: docker.io/kalaksi/tinyproxy
cap_drop:
- ALL
ports:
- 8888:8888
environment:
MAX_CLIENTS: 100
ALLOWED_NETWORKS: 0.0.0.0/0
# One of Critical, Error, Warning, Notice, Connect, Info
LOG_LEVEL: Notice
# Maximum number of seconds idle connections are allowed to remain open
TIMEOUT: 900
# Username for BasicAuth
# AUTH_USER: ''
# Password for BasicAuth (letters and digits only)
# Prefer secrets-mechanisms instead of environment variables.
# AUTH_PASSWORD: ''
healthcheck:
test: ["CMD", "curl", "-I", "-H", "Host: tinyproxy.stats", "${PROTOCOL}://nextcloud${DOMAIN_SUFFIX}/"]
interval: 5m
timeout: 10s
retries: 1


previews_hpb:
image: nextcloud/aio-imaginary:latest
Expand Down

0 comments on commit d36dd92

Please sign in to comment.