From f7f3ec9753531584e7474b2f8032ac93e1368845 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 2 Oct 2014 10:46:46 -0700 Subject: [PATCH] feature stop ssl cert validation, which is troublesome for dev servers using custom generated certs --- corsa/proxy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/corsa/proxy.py b/corsa/proxy.py index b94767f..5204999 100644 --- a/corsa/proxy.py +++ b/corsa/proxy.py @@ -111,6 +111,7 @@ def request_handler(self, url): headers=self.request.headers, follow_redirects=False, allow_nonstandard_methods=True, + validate_cert=False, #for ssl dev servers that are using free dev certs use_gzip=False, # otherwise tornado will decode proxied data )