mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Remove port from ALLOWED_HOST entries (#6871)
This commit is contained in:
parent
c2a9b0252a
commit
ffd1229714
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user