ERR_SSL_CLIENT_AUTH_SIGNATURE_FAILED in Google Chrome

后端 未结 6 1081
走了就别回头了
走了就别回头了 2021-02-13 19:00

I\'ve got a web site that uses SSL Client certificate authorization. All client certificates are generated using OpenSSL and are self-signed. Everything worked with all web-bro

6条回答
  •  没有蜡笔的小新
    2021-02-13 19:51

    I had this problem Connecting Chrome with WebSockets to apache throw proxy_wstunnel_module.

    My solution was configuring httpd.conf

    ProxyPass /wss2/ ws://127.0.0.1:8080/  retry=0 keepalive=On
    ProxyPassReverse /wss2/ ws://127.0.0.1:8080/  retry=0 
        
            SSLRequireSSL On
            SSLVerifyClient none
            SSLVerifyDepth 1
            SSLOptions +StdEnvVars +StrictRequire
            SSLRenegBufferSize 10486000
        
    

    Chrome WebSockets does not like the parameter SSLVerifyClient optional

    I hope this helps.

提交回复
热议问题