Discussion:
Using 'https_local_ssl_verify'
Ramiro
2014-02-11 16:08:51 UTC
Permalink
Hi there,

I'm having some troubles with a backup plugin. The author suggested to
use "'https_local_ssl_verify', '__return_false'" in my functions.php in
order to bypass the error (The HTTP response test get an error "Peer
certificate cannot be authenticated with known CA certificates").

Mi question is, would this harm the regular use of the SSL certificate
for the rest of the web? (validation of logins for example)

Thanks.

Ramiro.-
Otto
2014-02-11 18:29:44 UTC
Permalink
No. This is referring to verification of SSL from a client perspective, it
would not affect your server's ability to send responses to HTTPS clients.

On some server configurations, a "local" request made from a server back to
itself will have a different IP than if the request was coming from an
outside connection. This can be problematic if the request is SSL, because
the certificate won't match up properly.

Turning off the https_local_ssl_verify flag will basically allow it to
ignore this certificate verification failure for local requests only.

-Otto
Post by Ramiro
Hi there,
I'm having some troubles with a backup plugin. The author suggested to use
"'https_local_ssl_verify', '__return_false'" in my functions.php in order
to bypass the error (The HTTP response test get an error "Peer certificate
cannot be authenticated with known CA certificates").
Mi question is, would this harm the regular use of the SSL certificate for
the rest of the web? (validation of logins for example)
Thanks.
Ramiro.-
_______________________________________________
wp-hackers mailing list
http://lists.automattic.com/mailman/listinfo/wp-hackers
Ramiro Ramirez
2014-02-11 19:27:08 UTC
Permalink
Thanks otto!
Post by Otto
No. This is referring to verification of SSL from a client perspective, it
would not affect your server's ability to send responses to HTTPS clients.
On some server configurations, a "local" request made from a server back to
itself will have a different IP than if the request was coming from an
outside connection. This can be problematic if the request is SSL, because
the certificate won't match up properly.
Turning off the https_local_ssl_verify flag will basically allow it to
ignore this certificate verification failure for local requests only.
-Otto
Post by Ramiro
Hi there,
I'm having some troubles with a backup plugin. The author suggested to
use
Post by Ramiro
"'https_local_ssl_verify', '__return_false'" in my functions.php in order
to bypass the error (The HTTP response test get an error "Peer
certificate
Post by Ramiro
cannot be authenticated with known CA certificates").
Mi question is, would this harm the regular use of the SSL certificate
for
Post by Ramiro
the rest of the web? (validation of logins for example)
Thanks.
Ramiro.-
_______________________________________________
wp-hackers mailing list
http://lists.automattic.com/mailman/listinfo/wp-hackers
_______________________________________________
wp-hackers mailing list
http://lists.automattic.com/mailman/listinfo/wp-hackers
Loading...