From 292c30fd8f4ca48345e943873e5d7d0c0c9074d3 Mon Sep 17 00:00:00 2001 From: Marcell Toth Date: Wed, 6 Feb 2019 20:59:38 +0100 Subject: [PATCH] Fix code example for SSL Errors (#780) DangerousAcceptAnyServerCertificateValidator has to be set to "true" to disable certification validation, not "false". --- docs/features/configuration.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features/configuration.rst b/docs/features/configuration.rst index 89caf08b..408eb450 100644 --- a/docs/features/configuration.rst +++ b/docs/features/configuration.rst @@ -219,6 +219,6 @@ If you want to ignore SSL warnings / errors set the following in your ReRoute co .. code-block:: json - "DangerousAcceptAnyServerCertificateValidator": false + "DangerousAcceptAnyServerCertificateValidator": true I don't recommend doing this, I suggest creating your own certificate and then getting it trusted by your local / remote machine if you can.