# Ajout Proxy

Il faut mettre le script sous /etc/profile.d/proxy.sh

```bash
PROXY_URL=http://adresseip:port/
export http_proxy="$PROXY_URL"
export https_proxy="$PROXY_URL"
export ftp_proxy="$PROXY_URL"
export no_proxy="127.0.0.1,localhost"
```

   
Puis il faut exécuter :

```bash
source /etc/profile.d/proxy.sh
```