Hello !
1. The problem I’m having:
I have some websites/services running locally in containers.
I use Caddy as a reverse proxy.
I need to access the url of a container (say https://domain1.local) from another container.
There comes a SSL problem :
curl: (60) SSL certificate problem: unable to get local issuer certificate
All the certificates are stored in /var/lib/caddy/.local/share/caddy/certificates/local/
I tried to add all .crt files to my container, but after many tries, can’t make HTTPS to work.
Do you have any idea how I can add my local certificates to the container ?
My container runs Alpine LInux 3.18.
Thank you
2. Error messages and/or full log output:
curl: (60) SSL certificate problem: unable to get local issuer certificate
3. Caddy version:
v2.6.4 h1:2hwYqiRwk1tf3VruhMpLcYTg+11fCdr8S3jhNAdnPy8=
4. How I installed and ran Caddy:
Static binary, running as a service.
a. System environment:
Fedora 36 x86_64
b. Command:
c. Service/unit/compose file:
d. My complete Caddy config:
# Only reverse proxies like this
domain1.local {
reverse_proxy 127.0.0.1:8001
}