caddy-docker-proxy
caddy-docker-proxy copied to clipboard
Caddy as a reverse proxy for Docker
Right now, with this setup: ```yaml --- services: caddy: image: lucaslorentz/caddy-docker-proxy:ci-alpine container_name: caddy cpus: 0.5 mem_limit: 200m ports: - 80:80 - 443:443 - "443:443/udp" environment: - CADDY_INGRESS_NETWORKS=caddy - CADDY_DOCKER_CADDYFILE_PATH=/config/Caddyfile env_file:...
I am trying to put snikket behind an existing caddy-docker-proxy install. Snikket supports [being proxied](https://snikket.org/service/help/advanced/reverse_proxy/#caddy) but I'm having a hard time translating it to the label format. I do not...
``` [ERROR] Removing invalid block: Caddyfile:47: unrecognized directive: whoami.local Did you mean to define a second site? If so, you must use curly braces around each site to separate their...
Hi! With an exception to this point in the README: https://github.com/lucaslorentz/caddy-docker-proxy?tab=readme-ov-file#caddy-cli There's not a lot of mentions to the Environment Variables. For instance, if I want to know the default...