Skip to content
Discussion options

You must be logged in to vote

Three answers depending on which storage backend you configured. Local filesystem is the default; the four cloud backends only kick in if you opted into them in Settings → Storage Backend.

Default — local filesystem. Certificates live under data/certs/<domain>/:

data/certs/example.com/
├── cert.pem        # the leaf certificate
├── chain.pem       # the issuer chain
├── fullchain.pem   # cert.pem + chain.pem concatenated
└── privkey.pem     # the private key (mode 0600)

If you mounted ./data:/app/data (Q2) you can read these files directly from the host — but the durable contract is the API, not the file layout.

API — single file. Each file is a separate endpoint, so you can pipe one spe…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by fabriziosalmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant