initial implementation of reverse proxy, using django-revproxy from within a middleware

add new config entry "primary_domain" which is used to set the cookie domain
This commit is contained in:
Jens Langhammer
2019-03-20 22:42:47 +01:00
parent 9e46c8bfec
commit c23ceacd0b
19 changed files with 403 additions and 3 deletions

11
passbook/app_gw/apps.py Normal file
View File

@ -0,0 +1,11 @@
"""passbook Application Security Gateway app"""
from django.apps import AppConfig
class PassbookApplicationApplicationGatewayConfig(AppConfig):
"""passbook app_gw app"""
name = 'passbook.app_gw'
label = 'passbook_app_gw'
verbose_name = 'passbook Application Security Gateway'
mountpoint = 'app_gw/'