django-revproxy
django-revproxy copied to clipboard
Reverse Proxy view that supports all HTTP methods, Diazo transformations and Single Sign-On.
I used this to make a reverse proxy for grafana so I could use the django autenticatrion on it through auth proxy. But the grafana just shows an "Origin not...
Hello, Thank you for all the effort to make this works. I have the revproxy inside a view at www.mysite.com/proxy/. The problem I see is that in the responses the...
I want to set up a reverse proxy that will redirect a Django app URL to another part of the same website that is outside of Django. (for example): www.mysite.com/MyDjangoApp/foo/...
Thanks for this wonderful library first of all 🙇 Right now `application/json` is not one of the content types that should NOT be streamed. Because of this if you are...
I want to check user permissions and then give him access! how can i add middleware to django-revproxy
I requested https service, he reported an error. ``` python HTTPSConnectionPool(host='***, port=443): Max retries exceeded with url: /** (Caused by SSLError(SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate', 'certificate verify failed')])"))) ``` I...
I'm running a django server on a reaspberry pi. I have a service ([transmission-daemon](https://github.com/transmission/transmission)) listening on port 9091 and I want it to be accessible through the django server (as...
I tried to load user in custom _created_proxy_response method which inherent from ProxyView. In which i am trying to add custom logic to if auth is there or not. But...
Currently all the docs use ``` urlpatterns = patterns('', url(r'^(?P.*)$', TestProxyView.as_view()), ) ``` Tested working ok with this style of urlpatterns BUT as of Django 1.10 (currently 1.9.7) this will...
Hi, I was wondering if you had a special reason to [hardcode a very low threshold for returning a `StreamingHTTPResponse` instead of `HTTPResponse`](https://github.com/TracyWebTech/django-revproxy/blob/6de6dc6241c4f6a48f9746588599f02c2c00878e/revproxy/utils.py#L40). To my understanding, the Django docs generally...