22 lines
		
	
	
		
			613 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			613 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
 | 
						|
# Ce fichier contient la configuration du proxy à utiliser pour accéder à
 | 
						|
# internet, dans le cas où le fichier /etc/uproxy.conf n'existe pas.
 | 
						|
 | 
						|
# Faut-il autoriser le calcul automatique du proxy avec libproxy?
 | 
						|
#PROXY_ENABLE_LIBPROXY=1
 | 
						|
 | 
						|
# Credentials si le proxy est authentifié
 | 
						|
PROXY_LOGIN=
 | 
						|
PROXY_PASSWORD=
 | 
						|
 | 
						|
# domaines locaux, pour lesquels on ne doit pas passer par le proxy
 | 
						|
PROXY_LOCAL_DOMAINS=()
 | 
						|
 | 
						|
# proxy http
 | 
						|
HTTP_PROXY_HOST=
 | 
						|
HTTP_PROXY_PORT=
 | 
						|
 | 
						|
# proxy ftp anonyme
 | 
						|
FTP_PROXY_HOST="$HTTP_PROXY_HOST"
 | 
						|
FTP_PROXY_PORT="$HTTP_PROXY_PORT"
 |