Skip to content

[Config Support]: TLS Certs Not Found with Lets Encrypt and Certbot #14435

Closed Answered by johnlento
johnlento asked this question in Config Support
Discussion options

You must be logged in to vote

Alright, I figured it out. If someone finds this issue, you can't use symlinks in Docker really easy so the issue is that the symlink isn't being followed even though the archive directory is mounted just like the docs say. To fix it you need to mount the file directly to /frigate in the container. A better way and how I did it was:

volumes: - /etc/letsencrypt/live/<fqdn>/privkey.pem:/etc/letsencrypt/live/frigate/privkey.pem:ro - /etc/letsencrypt/live/<fqdn>/fullchain.pem:/etc/letsencrypt/live/frigate/fullchain.pem:ro

This will take the file specified at the symlink on the host and put the actual file in the frigate directory and it works fine.

Replies: 3 comments 5 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
4 replies
@hawkeye217
Comment options

@johnlento
Comment options

@hawkeye217
Comment options

@johnlento
Comment options

Comment options

You must be logged in to vote
1 reply
@hawkeye217
Comment options

Answer selected by hawkeye217
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment