19 lines
		
	
	
		
			521 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			521 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.
 | |
| 
 | |
| # 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"
 |