May 19, 20242 yr Hello, I want my unrade to connect via proxy server that I have running. I did try this in my config/go file #!/bin/bash http_proxy=http://xxx.xxx.xxx.xxx:xxxx https_proxy=http://xxx.xxx.xxx.xxx:xxxx echo "export http_proxy=\"http://xxx.xxx.xxx.xxx:xxxx\"" >> /root/.bash_profile echo "export https_proxy=\"http://xxx.xxx.xxx.xxx:xxxx\"" >> /root/.bash_profile # Start the Management Utility /usr/local/sbin/emhttp & But when I look at vpn manager, I can see that I not have the right IP I should have if I was via my proxy. Can anyone help me to setup so my unraid machine connect to a proxy please. Thanks. Edited May 19, 20242 yr by kiptanoi
May 19, 20242 yr Community Expert the go file should be: # Start the Management Utility /usr/local/sbin/emhttp & Commands at boot before some servicesw are started... This appear to be a user script that need to be ran at startup of array. Install user script plugin and make a script and at this to that script. #!/bin/bash http_proxy=http://xxx.xxx.xxx.xxx:xxxx https_proxy=http://xxx.xxx.xxx.xxx:xxxx echo "export http_proxy=\"http://xxx.xxx.xxx.xxx:xxxx\"" >> /root/.bash_profile echo "export https_proxy=\"http://xxx.xxx.xxx.xxx:xxxx\"" >> /root/.bash_profile
May 19, 20242 yr Community Expert i belive you are trying to foloow: and https://superuser.com/questions/944958/are-http-proxy-https-proxy-and-no-proxy-environment-variables-standard full code and steps: Edited May 19, 20242 yr by bmartino1
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.