fixed broken HTT_HOST in routes_in
This commit is contained in:
+1
-1
@@ -538,7 +538,7 @@ def load_routers(all_apps):
|
||||
def regex_uri(e, regexes, tag, default=None):
|
||||
"filter incoming URI against a list of regexes"
|
||||
path = e['PATH_INFO']
|
||||
host = e.get('http_host', e.get('SERVER_NAME', 'localhost')).lower()
|
||||
host = e.get('HTTP_HOST', e.get('SERVER_NAME', 'localhost')).lower()
|
||||
i = host.find(':')
|
||||
if i > 0:
|
||||
host = host[:i]
|
||||
|
||||
Reference in New Issue
Block a user