Certification error when starting hosting repo with caddy #661
-
Running with reverse proxy a few times always fails with cert error. Can we somehow use a local certificate?
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Certificate serving is purely on the side of your reverse proxy; you can try adding the cert through certbot without the docker containers running, and instead with just a basic site, or you can generate just a cert and add it to the reverse proxy config manually if that's not working for you. The error you're getting is between Caddy and LetsEncrypt - and it's that you've somehow requested too many certificates for that domain recently. I'd recommend LetsEncrypt support. |
Beta Was this translation helpful? Give feedback.
-
@Vigasaurus So, I figured out the issue. I was running docker-compose down instead of stop. This was removing the volumes associated with caddy along with the certificates inside the volume. |
Beta Was this translation helpful? Give feedback.
@Vigasaurus So, I figured out the issue. I was running docker-compose down instead of stop. This was removing the volumes associated with caddy along with the certificates inside the volume.