Installing Iron Foundry behind a proxy server requires a few minor changes in the installation steps, mostly due to the use of Linux-based tools like git and ruby. Normally, windows-based programs would pick up the proxy server credentials and address from Internet Options, and things would just work. Since we have the extra tools, we have to specify our proxy credentials and address a few different ways. Fortunately this is easy to do, and once you do it the installation should just work again.
Three discrete changes are all that is necessary to deploy behind a firewall:
$env:HTTP_PROXY = "proxy information"
, where the double quotes are important, since this is a string.[http] proxy = http://127.0.0.1:8118 [https] proxy = http://127.0.0.1:8118
Once those three steps are completed, you can run through the installation steps as written in the README file.