We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See http://justintung.com/2013/04/25/how-to-configure-proxy-settings-in-linux/ for some interesting suggestions..
The text was updated successfully, but these errors were encountered:
I used the vagrant-proxyconf plugin and added this to the the Vagrantfile:
vagrant-proxyconf
mastername = get_vm_name(1) + hostnames = (1..@nr_hosts).map{|i| get_vm_name(i)}.join(",") + config.proxy.ftp = "http://10.1.1.100:8080/" + config.proxy.http = "http://10.1.1.100:8080/" + config.proxy.https = "http://10.1.1.100:8080/" + config.proxy.no_proxy = "localhost,127.0.0.1,#{hostnames}" + config.hostmanager.enabled = false config.hostmanager.manage_host = true config.hostmanager.include_offline = true
Would it be worth adding this code inside a guard expression and having the proxy as an optional setting in project.properties?
project.properties
Sorry, something went wrong.
Looks great! PR's always welcome.. :)
No branches or pull requests
See http://justintung.com/2013/04/25/how-to-configure-proxy-settings-in-linux/ for some interesting suggestions..
The text was updated successfully, but these errors were encountered: