aboutsummaryrefslogtreecommitdiff
path: root/source/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-08-11 14:13:31 +0200
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-08-11 14:13:31 +0200
commitc42aa9a1e2ec1a9afc0f6a3fbbc402a4d05ec4f7 (patch)
tree020b9eae53956ff1d9daa1ed97ef554f5115c73a /source/conf.py
parentThe /management page dislays the number of indexed documents. (diff)
downloadnewspipe-c42aa9a1e2ec1a9afc0f6a3fbbc402a4d05ec4f7.tar.gz
newspipe-c42aa9a1e2ec1a9afc0f6a3fbbc402a4d05ec4f7.tar.bz2
newspipe-c42aa9a1e2ec1a9afc0f6a3fbbc402a4d05ec4f7.zip
It is now possible to fetch articles with feedparser through a HTTP proxy, for example privoxy/tor. The address of the proxy is specified in the configuration file.
Diffstat (limited to 'source/conf.py')
-rw-r--r--source/conf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/conf.py b/source/conf.py
index 0dc42170..98aa0d48 100644
--- a/source/conf.py
+++ b/source/conf.py
@@ -52,3 +52,4 @@ password = config.get('mail','password')
DIASPORA_POD = config.get('misc', 'diaspora_pod')
FEED_LIST = config.get('misc', 'feed_list')
+HTTP_PROXY = config.get('misc', 'http_proxy')
bgstack15