Proxy config - Linux

 /etc/apt/apt.conf

Acquire{
HTTP::proxy "http://192.168.179.222:80";
HTTPS::proxy "http://192.168.179.222:80";
FTP::proxy "http://192.168.179.222:80";
}

Linhas a serem adicionadas no arquivo /etc/yum.conf

# The proxy server - proxy server:port number
proxy=http://IP_PROXY:PORTA
# The account details for yum connections
proxy_username=USUARIO
proxy_password=SENHA

Linhas no arquivo .bash_profile:

export http_proxy=http://IP_PROXY:PORTA
export https_proxy=http://USUARIO:SENHA@IP_PROXY:PORTA


sudo vi /etc/wgetrc

https_proxy = http://USUARIO:SENHA@IP_PROXY:PORTA
http_proxy = http://USUARIO:SENHA@IP_PROXY:PORTA
ftp_proxy = http://USUARIO:SENHA@IP_PROXY:PORTA

sudo vi /etc/profile

export http_proxy=USUARIO:SENHA@IP_PROXY:PORTA
export ftp_proxy=USUARIO:SENHA@IP_PROXY:PORTA


/etc/environment

http_proxy="http://USUARIO:SENHA@IP_PROXY:PORTA"
https_proxy="http://USUARIO:SENHA@IP_PROXY:PORTA"
ftp_proxy="http:///USUARIO:SENHA@IP_PROXY:PORTA"
no_proxy=localhost,127.0.0.0/8
export http_proxy https_proxy ftp_proxy no_proxy 
 
 

 

Create pem certificate

 Creating a .pem with the Private Key and Entire Trust Chain     Log into your DigiCert Management Console and download your Intermediate (D...

Mais vistos