mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-03 03:16:10 -06:00 
			
		
		
		
	Fix ALLOWED_HOSTS logic being overwritten when * is set
This commit is contained in:
		@@ -422,11 +422,12 @@ if _paperless_url:
 | 
				
			|||||||
    _paperless_uri = urlparse(_paperless_url)
 | 
					    _paperless_uri = urlparse(_paperless_url)
 | 
				
			||||||
    CSRF_TRUSTED_ORIGINS.append(_paperless_url)
 | 
					    CSRF_TRUSTED_ORIGINS.append(_paperless_url)
 | 
				
			||||||
    CORS_ALLOWED_ORIGINS.append(_paperless_url)
 | 
					    CORS_ALLOWED_ORIGINS.append(_paperless_url)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if ["*"] != ALLOWED_HOSTS:
 | 
					if ["*"] != ALLOWED_HOSTS:
 | 
				
			||||||
        ALLOWED_HOSTS.append(_paperless_uri.hostname)
 | 
					 | 
				
			||||||
    else:
 | 
					 | 
				
			||||||
    # always allow localhost. Necessary e.g. for healthcheck in docker.
 | 
					    # always allow localhost. Necessary e.g. for healthcheck in docker.
 | 
				
			||||||
        ALLOWED_HOSTS = [_paperless_uri.hostname] + ["localhost"]
 | 
					    ALLOWED_HOSTS.append(["localhost"])
 | 
				
			||||||
 | 
					    if _paperless_url:
 | 
				
			||||||
 | 
					        ALLOWED_HOSTS.append(_paperless_uri.hostname)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# For use with trusted proxies
 | 
					# For use with trusted proxies
 | 
				
			||||||
TRUSTED_PROXIES = __get_list("PAPERLESS_TRUSTED_PROXIES")
 | 
					TRUSTED_PROXIES = __get_list("PAPERLESS_TRUSTED_PROXIES")
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user