The equivalent tls_insecure_skip_verify in `reverse_proxy`

Alright, I can get it to work right now. Thanks.

But couple more questions:

  1. So the way it works with SSL and reverse proxy, is that I also need to put the certificate on caddy server right. (Caddyfile below)
  2. And it seems like when using docker container in reverse_proxy directive, the container_name must have https:// protocol, if not caddy send me 500 error
  3. What is read_buffer, and why do I need that value
mydomain.dev {
	tls /cert/mydomain.dev.pem /cert/mydomain.dev.key # <-- question #1

	reverse_proxy {
		to https://backend_container # <-- question #2
		transport http {
			tls
			tls_insecure_skip_verify
			read_buffer 8192 # <-- question #3
		}
		
	}
}