Skip to main content

Configuring Terminal Proxy in Linux

export https_proxy=http://172.16.15.245:4530;export http_proxy=http://172.16.15.245:4530;export all_proxy=socks5://172.16.15.245:4530

Note: The IP and port in above commands are just examples, please replace with your own ip:port

GitHub Actions Runner Proxy Configuration

  • Open the .env file in actions-runner directory:
nano .env
http_proxy=http://172.16.15.245:4530
https_proxy=http://172.16.15.245:4530

Remember to modify the proxy server address according to your own settings