Steven’s Blog

Web Development And Other Topics.

Follow publication

Steven
Steven’s Blog
Published in
1 min readOct 6, 2016

Include a Certificate Chain File in nginx

Sometimes you have to deliver the certificate authorities’ (CA) own certificates by using their SSL chain certificate.

The file is most likely provided by your CA as a .pem-file and if you are using Apache2 it can be easily integrated by adding the following line to your vhost-config:

SSLCertificateChainFile /path/to/chain.pem

But there is no such option in nginx. So what do you have to do now?

It’s really easy! Simply concatenate your domain’s certificate file and your CA’s chain file:

cat example.org.crt chain.pem > bundle.crt

Now you can include your bundled certificate-file into your nginx config just like you would do with your domain’s certificate file:

ssl_certificate bundle.crt

That’s it!

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

No responses yet

Write a response