You do this by supplying your own pool manager that disables any cert verification.
from revproxy.views import ProxyView
from urllib3 import PoolManager
class NoSSLVerifyProxyView(ProxyView):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.http = PoolManager(
cert_reqs='CERT_NONE', assert_hostname=False
)
urlpatterns += [
url(r'^proxy/(?P<path>.*)$',
NoSSLVerifyProxyView.as_view(upstream=settings.MY_UPSTREAM_URL)
),
]