# Configurações de Proxy ## ANGULAR #### CONFIGURAR PROXY ``` npm config --global set proxy http://usuario:senha @10.21.7.10:82 npm config --global set https-proxy http://usuario:senha @10.21.7.10:82 ``` #### CONFIGURAÇÃO DE PROXY ATUAL `npm config get proxy` #### APAGA CONFIGURAÇÃO DE PROXY ``` npm config rm proxy npm config rm https-proxy npm config --global rm proxy npm config --global rm https-proxy ``` ## PYTHON #### CONFIGURAR PROXY `pip install --proxy=https://usuario:senha@10.21.7.10:82 django`