From 213c01d459455d0c9062e228e5bc581c92fcda69 Mon Sep 17 00:00:00 2001 From: martin scharm Date: Wed, 17 Jan 2018 12:28:47 +0100 Subject: [PATCH] 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 --- include/functions.php | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.39.2