I have been running into problems whilst configuring my XFCE proxy settings. Whilst declaring the proxy variables in /etc/environment seems to work for wget, curl and chrome, it has no effect on apt or firefox. In addition, there seems to be a need for duplicated proxy variables, one in lower case, the other in higher case.
Can anyone list the full set of configuration changes needed to effectively inform all applications to use proxy settings across the XFCE environment and perhaps comment on the need for upper and lower case settings?, Thanks.
3 Answers
The environment variables for controlling proxy behaviour are as follows: http_proxy, ftp_proxy, https_proxy, all_proxy and no_proxy. Unfortunately, some applications require these in upper case, other applications need these variables in lower case, that just the way it is.
The format for declaring a proxy exclusion list is simply a comma separated list, the declaration has some wildcard capabilities but not all applications respect these:
no_proxy=127.0.0.1,*.local.comYour /etc/environment needs to have the following proxy configuration:
no_proxy=localhost,127.0.0.0/8,*.local
NO_PROXY=localhost,127.0.0.0/8,*.local
all_proxy=socks://proxy.example.com:8080/
ALL_PROXY=socks://proxy.example.com:8080/
http_proxy=
HTTP_PROXY=
ftp_proxy=
FTP_PROXY=
https_proxy=
HTTPS_PROXY=You must log out before your desktop environment will refresh it's environment variables. As all desktop applications are started by the desktop environment, they subsequently inherit its environment settings.
Next, you'll need to update your apt configuration. Create a file called /etc/apt/apt.conf and edit it to contain these declarations:
Acquire::http::proxy "";
Acquire::ftp::proxy "ftp://proxy.example.com:8080/";
Acquire::https::proxy "";Verify that apt has picked up these settings via this command
apt-config dump | grep -i proxy # lists the proxy settingsChrome will respect the proxy environment variables but Firefox does not, even though it has apparently addressed this issue
2I tried the "dconf-tools" Gnome package in Xfce and it works.
4Using XFCE 4.10 on ArchLinux
I've tried dconf too, but it didn't work for me.
Using Linux Mint 13 XCFE
I was able to configure the proxy using 'gnone-control-center network'
apt-get install gnome-control-centerdon't forget to reset xfce as your session manager after installing gnome-control-center package:
update-alternatives --config x-session-manager