From: martin scharm Date: Wed, 17 Jan 2018 11:28:47 +0000 (+0100) Subject: some proxies require `request_fulluri` set to true [see #36] X-Git-Tag: 18.8~85^2~1 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=213c01d459455d0c9062e228e5bc581c92fcda69;p=tt-rss.git some proxies require `request_fulluri` set to true [see #36] at least polipo won't work for plain HTTP URLs (HTTPS strangely also works without `request_fulluri`..?) see https://git.tt-rss.org/git/tt-rss/pulls/36 --- diff --git a/include/functions.php b/include/functions.php index f58a2fc6..2c6b5133 100644 --- a/include/functions.php +++ b/include/functions.php @@ -496,6 +496,7 @@ } if (defined('PROXY')) { + $context_options['http']['request_fulluri'] = true; $context_options['http']['proxy'] = PROXY; }