Replies: 2 comments 6 replies
|
@ijonjic11, Thanks for the detailed feature request! happy to confirm that both custom TLS certificates and optional Traefik dashboard support are fully implementable for self-hosted Docker Compose deployments. This is purely an infrastructure change — no application code modifications needed. Please update docker compose file to achieve this, let me know if you need any help. |
|
@ijonjic11 Please try these steps for custom certificates setup. The current Step 1: Create a certs directorymkdir -p deploy/docker/certsStep 2: Place your certificate files# Full chain certificate (server cert + intermediates) in PEM format
cp /path/to/your/cert.pem deploy/docker/certs/cert.pem
# Private key (unencrypted, no passphrase) in PEM format
cp /path/to/your/key.pem deploy/docker/certs/key.pem
# Lock down the private key
chmod 600 deploy/docker/certs/key.pemStep 3: Create a Traefik dynamic config fileCreate tls:
certificates:
- certFile: /certs/cert.pem
keyFile: /certs/key.pemStep 4: Modify the
|


Uh oh!
There was an error while loading. Please reload this page.
As some of supercheck installation will probably be done and used specifically in private netoworks, which means that LetsEncrypt DNS challenge is not possible, custom certs usage options will be needed in order to make production-ready installation.
Can you take a look at this a see if something like this is possible to implement?
It would be cool that user can choose which type of certs they want to use: Lets'encrypt (ACME) or Custom certs(probabaly TLS).
Not sure how status page need to be handled if custom certs are used,but it would be cool to use the same method for status pages too.
Also,I saw that Traefik dashboard are pretty cool to have from time to time to check if everything works as expected so maybe it would be also cool to be able to enable it from .env file when you need it and then disable it later(or have enabled all the time but protected with htpasswd or something similar).
Sorry if it feels like I have too much ideas and propositions, I'm using supercheck in highly restricted environment so some of this feature request are needed.
Thank you and no rush with this,take as much time as you need.
All reactions