mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
936e5d2416
These files will replace the existing `test/config/letsencrypt` content which has some random provisioned FQDN for letsencrypt that doesn't match the FQDN tested, `acme.json` files with FQDNs that don't match those certs FQDNs and changes to certs that won't expire until 2031. `test/config/letsencrypt` will be removed with the associated test update PR. The changes amount to: - Re-configuring the FQDN values that some certs were created for (_needed for flexibility in testing_). - Adding an `*.example.test` wildcard (_both RSA and ECDSA_). - Adding `acme.json` encoded versions (_traefik extraction support will use these instead_). - Updated / new internal docs for maintainers of this content. For more detailed information on those changes, please see the associated commit messages via the PR.
2.2 KiB
2.2 KiB
Traefik acme.json
test files
Traefik encodes it's provisioned certificates into acme.json
instead of separate files, but there is nothing special about the storage or content.
Each *.acme.json
file provides base64 encoded representations of their equivalent cert and key files at the same relative location.
The only relevant content being tested from these acme.json
files is in le.Certificates
, everything else is only placeholder values.
Certificates have been encoded into base64 for acme.json
files from the example.test/with_ca/{ecdsa,rsa}/
folders:
- Those folders each provide a Root CA cert which functions similar to Let's Encrypt role for verification of the chain of trust. All leaf certificates are signed by the Root CA key file located in these two folders.
- Leaf certificates are the kind you'd get provisioned normally via a service like Let's Encrypt to use with your own server. These are available in both ECDSA and RSA, where those in
with_ca/rsa/
are valid for both FQDNsmail.example.test
andexample.test
as SANs; but those inwith_ca/ecdsa/
are restricted to one FQDN. - Each
acme.json
file lists the supported FQDNs in thesans
field. Presentlymain
is alwaysSmallstep Leaf
, which is associated to the certificate "Subject CN", which was often used for an FQDN in the past prior to SAN support.main
can still provide a valid FQDN, but none of the testacme.json
have a matching cert to test against. - There is also two wildcard configs, where the only difference is a pure ECDSA or RSA chain for
*.example.test
.These are valid for subdomains ofexample.test
such as:mail.example.test
, but notexample.test
itself.
Encode and decode certs easily via the step base64
command:
- Decode:
echo 'YmFzZTY0IGVuY29kZWQgc3RyaW5nCg==' | step base64 -d
Optionally write the output to a file:> example.test/with_ca/ecdsa/cert.rsa.pem
- Encode:
cat example.test/with_ca/ecdsa/cert.rsa.pem | step base64
- Inspect the PEM encoded data:
step certificate inspect example.test/with_ca/ecdsa/cert.rsa.pem
Note:step certificate inspect
will only work with valid PEM encoded files, not the example base64 value to decode here.