mirror of
				https://github.com/samply/bridgehead.git
				synced 2025-11-04 08:20:17 +01:00 
			
		
		
		
	Merge pull request #155 from samply/fix/dnpm-no-proxy
Add DNPM_NO_PROXY configuration option
This commit is contained in:
		@@ -16,7 +16,7 @@ services:
 | 
			
		||||
      LOCAL_TARGETS_FILE: "./conf/connect_targets.json"
 | 
			
		||||
      HTTP_PROXY: "http://forward_proxy:3128"
 | 
			
		||||
      HTTPS_PROXY: "http://forward_proxy:3128"
 | 
			
		||||
      NO_PROXY: beam-proxy,dnpm-backend,host.docker.internal
 | 
			
		||||
      NO_PROXY: beam-proxy,dnpm-backend,host.docker.internal${DNPM_ADDITIONAL_NO_PROXY}
 | 
			
		||||
      RUST_LOG: ${RUST_LOG:-info}
 | 
			
		||||
      NO_AUTH: "true"
 | 
			
		||||
      TLS_CA_CERTIFICATES_DIR: ./conf/trusted-ca-certs
 | 
			
		||||
 
 | 
			
		||||
@@ -6,4 +6,10 @@ if [ -n "${ENABLE_DNPM}" ]; then
 | 
			
		||||
 | 
			
		||||
	# Set variables required for Beam-Connect
 | 
			
		||||
	DNPM_BEAM_SECRET_SHORT="$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20)"
 | 
			
		||||
	# If the DNPM_NO_PROXY variable is set, prefix it with a comma (as it gets added to a comma separated list)
 | 
			
		||||
	if [ -n "${DNPM_NO_PROXY}" ]; then
 | 
			
		||||
		DNPM_ADDITIONAL_NO_PROXY=",${DNPM_NO_PROXY}"
 | 
			
		||||
	else
 | 
			
		||||
		DNPM_ADDITIONAL_NO_PROXY=""
 | 
			
		||||
	fi
 | 
			
		||||
fi
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user