Is it possible to add SSLCertificateChainFile?

Hello,
I am trying to enable HTTPS on my tljh.
I have my keys, the domain.cert and also a DigiCertCA.cert.
Is it possible to add an intermediate certificate using something like

sudo tljh-config set https.tls.chain /etc/mycerts/DigiCertCA.cert

Thank you for your help,

There isn’t a config option for this, I think you’ll have to concatenate the files to create a fullchain.pem, like letsencrypt/certbot do, and then pass that as the single config option.

Thank you for your help.
I was quite busy ^^
Something appeared on the jupyterhub website that I didn’t see before.

It is explained how to deal with chain certificate:

cat your_host.crt chain.crt root.crt > your_host-chained.crt

sudo tljh-config set https.enabled true
sudo tljh-config set https.tls.key /etc/mycerts/your_host.key
sudo tljh-config set https.tls.cert /etc/mycerts/your_host-chained.cert