I have used cerbot to enable let’s encrypt.
I trying to enable OCSP stapling on nginx + ubuntu.
So far I have done:
ssl_stapling on;
ssl_stapling_verify on;
But, I don’t know how to generate the ssl_trusted_certificate ??????;
I have used cerbot to enable let’s encrypt.
I trying to enable OCSP stapling on nginx + ubuntu.
So far I have done:
ssl_stapling on;
ssl_stapling_verify on;
But, I don’t know how to generate the ssl_trusted_certificate ??????;
Hi @wizozi,
Use the chain.pem
file that you should have in /etc/letsencrypt/live/yourdomain/chain.pem
ssl_trusted_certificate /etc/letsencrypt/live/yourdomain/chain.pem;
Cheers,
sahsanu
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.