Adding https to a load balancer

1. Caddy version (caddy version): v2.4.6

2. How I run Caddy:

caddy run --config Caddy

a. System environment:

docker

d. My complete Caddyfile or JSON config:

{
	https_port 4443
	http_port 8880
}

:1016 {
	tls internal {
		on_demand
	}

	reverse_proxy * {
		to https://10.10.10.2:1113
		to https://10.10.10.3:1113

		transport http {
			tls_insecure_skip_verify
		}

		lb_policy       random_choose 2
                ....
	}
}

3. The problem I’m having:

I would want to run https://< ip >:1016 but this is not working

We can’t help if this is all you tell us.

What are the symptoms? What’s in your logs?

Do not remove any parts of the help topic template. Fill everything out.

Please upgrade to v2.5.1.

This topic was automatically closed after 30 days. New replies are no longer allowed.