mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-17 04:25:42 +00:00
Remove port from ALLOWED_HOST entries (#6871)
This commit is contained in:
@ -1017,7 +1017,10 @@ if not ALLOWED_HOSTS:
|
||||
# Ensure that the ALLOWED_HOSTS do not contain any scheme info
|
||||
for i, host in enumerate(ALLOWED_HOSTS):
|
||||
if '://' in host:
|
||||
ALLOWED_HOSTS[i] = host.split('://')[1]
|
||||
ALLOWED_HOSTS[i] = host = host.split('://')[1]
|
||||
|
||||
if ':' in host:
|
||||
ALLOWED_HOSTS[i] = host = host.split(':')[0]
|
||||
|
||||
# List of trusted origins for unsafe requests
|
||||
# Ref: https://docs.djangoproject.com/en/4.2/ref/settings/#csrf-trusted-origins
|
||||
|
Reference in New Issue
Block a user