Skip to content

Instantly share code, notes, and snippets.

@sanmai
Created April 20, 2015 04:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sanmai/bac05ef85a9666b0f8fb to your computer and use it in GitHub Desktop.
Save sanmai/bac05ef85a9666b0f8fb to your computer and use it in GitHub Desktop.
OCSP responder prematurely closed connection while requesting certificate status, responder: ocsp6.wosign.com

Там где нужно:

ssl_stapling_responder http://www.example.com/wosign_request/;

В хосте www.example.com который открывается по http:

    location ~ ^/wosign_request/(.*)$ {
        resolver 127.0.0.1;
        allow <IP того сервера>;
        deny  all;
        proxy_pass http://ocsp6.wosign.com/ca6/server1/free/$1;
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment