djproxy icon indicating copy to clipboard operation
djproxy copied to clipboard

djproxy is a class-based generic view reverse HTTP proxy for Django.

Results 7 djproxy issues
Sort by recently updated
recently updated
newest added

Allows to override the final `request` call by overriding the new `_request` function. In our case we needed to use a custom adapter with `requests.Session`.

Related to #44 Handles the transmission of multiple cookies returned by a server as multiple set-cookie headers. Request merges the set-cookie headers into one. The default behavior is ok if...

In case the server returns more than one `set-cookie` header, djproxy returns a single `set-cookie` header that is incomprehensible to the browser. [This bug is known and reported in the...

For anyone else looking for how to make this work in Django 3.1+, you'll find that [url() is deprecated](https://docs.djangoproject.com/en/3.1/ref/urls/#url), so where you see this in the documentation: `url(r'^local_proxy/(?P.*)$', LocalProxy.as_view(), name='proxy')`...

use re_path instead of deprecated url method For older versions of django, we use an alternate code path to retain support. The automatic tests are running correctly on python 2.7...

Hi thomas, great proxy you have developed there, thanks in first place :+1: Just a question if you took a look already at supporting websockets via the [django-channels ](http://channels.readthedocs.io/en/latest/index.html)project? I...

URL links in proxied documents that begin with '/' always request the document at the url of the website. For example, if my website is www.example.com, and the proxy for...