Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


SSL Fix
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

SSL Fix

SpencerSpencer Member
edited June 2012 in Help

Whenever anybody visits my billing section in firefox they get an error and the error is:
(Error code: sec_error_unknown_issuer)

It has something to do with the chain in SSL but after all the googling in the world I can not seem to come up with a fix that actually works.

The domain is: https://billing.pytohost.com/clientarea.php

Any help would be appreciated, thanks!

Edit:
My web server is Nginx

Comments

  • FranciscoFrancisco Top Host, Host Rep, Veteran
    edited June 2012

    you need to make sure you have the CA-issuer file included :)

    In lighttpd it looks like this:

    $SERVER["socket"] == "0.0.0.0:443" {
    server.document-root = "/usr/local/stallion/www/"
    ssl.engine = "enable"
    ssl.pemfile = "/usr/local/stallion/ssl/manage.buyvm.net.pem"
    ssl.ca-file = "/usr/local/stallion/ssl/rapidssl.crt"
    }

    Whoever issued your SSL should have a link to the middle man SSL.

    Francisco

  • It was a dumb mistake on my end lol

    I was trying add the CAbundle to domain.crt and I forgot that nginx only uses the .pem format. So it was a simple copy and paste fix.

Sign In or Register to comment.