From 21a884d4e1d9a5ef765cbeec61a5389ad2668a71 Mon Sep 17 00:00:00 2001 From: Tails developers Date: Sat, 29 Jun 2013 08:38:41 +0000 Subject: [PATCH] Set https_proxy and HTTPS_PROXY the same way as http_proxy. Until Tails 0.18, GNOME did set these environment variables since we set its proxy settings. That's not the case anymore in 0.19. Git access to https:// repositories requires these environment variables. --- config/chroot_local-includes/etc/environment | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/chroot_local-includes/etc/environment b/config/chroot_local-includes/etc/environment index d8ca2a535..37c08a117 100644 --- a/config/chroot_local-includes/etc/environment +++ b/config/chroot_local-includes/etc/environment @@ -1,5 +1,7 @@ http_proxy=http://127.0.0.1:8118 HTTP_PROXY=http://127.0.0.1:8118 +https_proxy=http://127.0.0.1:8118 +HTTPS_PROXY=http://127.0.0.1:8118 SOCKS_SERVER=127.0.0.1:9050 SOCKS5_SERVER=127.0.0.1:9050 -- 2.11.4.GIT