Use UNRAID from behind a proxy (corporate environment)


Recommended Posts

I was having some issues using UNRAID in my corporate environment because there was a proxy for out side access. This was causing issues installing plugins and using plugins if I was able to "make" them install (doing it semi-manually by modifying the .plg file).

 

I wasn't able to find anything online so I wanted to share what worked for me.

 

I'm not sure if the bash profile was needed, or if just adding the exports to the go file does the trick; but I'm to lazy to figure it out since it's working:

  1. modify the '/boot/config/go' as such.  NOTE: you will need to fill-in/replace your own details for the export statments.
    1. #!/bin/bash
      
      export http_proxy=http://my-proxy-server.com:1111
      export ftp_proxy=http://my-proxy-server.com:1111
      export https_proxy=http://my-proxy-server.com:1111
      export no_proxy=my.com,.my.com,192.168.0.0/16,localhost,127.0.0.0/8,134.134.0.0/16
      
      # Start the Management Utility
      /usr/local/sbin/emhttp &
      
      echo "test -f /boot/config/mybashprofile && source /boot/config/mybashprofile" >> /root/.bash_profile
  2. Create '/boot/config/mybashprofile' with the following contents.
    1. export http_proxy=http://my-proxy-server.com:1111
      export ftp_proxy=http://my-proxy-server.com:1111
      export https_proxy=http://my-proxy-server.com:1111
      export no_proxy=my.com,.my.com,192.168.0.0/16,localhost,127.0.0.0/8,134.134.0.0/16

       

Link to comment

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.