ARTbio / GalaxyKickStart

Ansible playbooks for Galaxy Server deployment
GNU General Public License v3.0
24 stars 22 forks source link

Ansible environment proxy #235

Closed colindaven closed 7 years ago

colindaven commented 7 years ago

Hi,

I have got a long way further, but only after having multiple issues with miniconda, git and https downloads.

Since many of your users might be behind a proxy, it might make sense to flag where to put their proxy information. It was not sufficient to have proxies entered in /etc/profile on the base linux system.

Useful: http://docs.ansible.com/ansible/playbooks_environment.html

I had to enter the proxy in the Ansible galaxy.yml

`nano GalaxyKickStart/galaxy.yml

environment: http_proxy: http://myproxy.xxx.com:8080 https_proxy: http://myproxy.xxx.com:8080 `

Thereafter it seems most connections are unproblematic. Maybe something to document in the FAQ and landing page?

cheers Colin