Hi All
I managed to get the nginx reverse proxy up and forwarding to my https
web
server.
I think I have missed something though as a user just let me know that
when
he tried to access the site he gets a message that the certificate is
invalid.
I just did a test with ssllabs and noticed that it shows this error:
"This
server’s certificate chain is incomplete. "
Any ideas on what I have missed? Thanks for the assistance.
That test should point you in some direction but you’re probably
missing an intermediate certificate which would normally be provided by
the
issuer and appended to the file containing your server certificate.
Thanks for that. I found out also that I need to export all the
intermediate certs. I used this command below to export them all to a
text
file.
openssl pkcs12 -in <file_name>.pfx -out outputfile.txt -nodes.
Then I manually removed the private key and used the result as the cert.
It
works now except that the same test result says “Contains Anchor” This
is
not really a problem from what I have read but I will spend a little
time
trying to figure how to correct this also.
Ok I’m going to try to figure out which it is so I can manually remove
it.
However I must say that I am a new believer in nginx. Good job on an
excellent piece of software.