caddy-docker-proxy icon indicating copy to clipboard operation
caddy-docker-proxy copied to clipboard

Caddy as a reverse proxy for Docker

Results 114 caddy-docker-proxy issues
Sort by recently updated
recently updated
newest added

Hey! Im am simply trying to redirect to a 404 page (404.html) when the requested resource doesn't exist. This is my current (working - without the redirect) config: ``` caddy_0.encode=zstd...

I try to implement such logic to rewrite HTTP 307 response from some backend to a HTTP 200 one. Equivalent in Caddyfile would be: ```nginx {$DOMAIN} { reverse_proxy http://service:80 {...

I'm using a random domain that I want to get configured locally with https: `*.local.co`. I have been using http for everything, but I see that I can use locally...

I've got a use case where caddy is currently running on a router (not in a docker) and I have another server which has all the docker containers. I'd like...

labels: caddy: *.domain.con caddy.reverse_proxy: "{{upstreams http 80}}" how to do it correctly so that it accepts requests from all domains, no need to make ssl-certs

Is it possible to add a --pidfile flag?

Following #342, the layer4 plugin can be configured using `Caddyfile`. I'm trying to get one of the examples working, but I'm not sure how to set the keys in the...

I'm trying to set up caddy-docker-proxy in somewhat of an unorthodox way (similar to #616), but I've encountered a disparity between the docs and observed behavior. The README states, >...

I've been trying to get this to work for a little while now, but it only works for me if I remove all imports (both from the source caddy file,...

Will need a custom build with the duckdns plugin ``` ARG CADDY_VERSION=2.8.4 FROM caddy:${CADDY_VERSION}-builder AS builder RUN xcaddy build \ --with github.com/lucaslorentz/caddy-docker-proxy/v2 \ --with github.com/caddy-dns/duckdns FROM caddy:${CADDY_VERSION}-alpine COPY --from=builder /usr/bin/caddy...