Move code from django-revproxy to app_gw to fix cookie bug

This commit is contained in:
Jens Langhammer
2019-04-10 19:03:22 +02:00
parent 35b6bb6b3f
commit 04d613cb28
5 changed files with 300 additions and 2 deletions

View File

@ -0,0 +1,8 @@
"""Exception classes"""
class ReverseProxyException(Exception):
"""Base for revproxy exception"""
class InvalidUpstream(ReverseProxyException):
"""Invalid upstream set"""