aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-14 11:41:59 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-14 11:41:59 +0100
commitf9c61cbd2a4f44a84367f163d0258f676acb1f17 (patch)
treeca23e3c2b88b2959d4c5f82389a8f939b8a10aee /src/conf.py
parentMajor changes to the right panel. (diff)
downloadnewspipe-f9c61cbd2a4f44a84367f163d0258f676acb1f17.tar.gz
newspipe-f9c61cbd2a4f44a84367f163d0258f676acb1f17.tar.bz2
newspipe-f9c61cbd2a4f44a84367f163d0258f676acb1f17.zip
Removed proxy support. Not so used and better to set at the system level.
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/conf.py b/src/conf.py
index 38dbee69..5bf831a7 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -36,7 +36,6 @@ DEFAULTS = {"platform_url": "https://JARR.herokuapp.com/",
"log_level": "info",
"user_agent": "JARR (https://github.com/JARR-aggregator)",
"resolve_article_url": "false",
- "http_proxy": "",
"secret": "",
"enabled": "false",
"notification_email": "jarr@no-reply.com",
@@ -84,11 +83,8 @@ NB_WORKER = config.getint('misc', 'nb_worker')
API_LOGIN = config.get('crawler', 'api_login')
API_PASSWD = config.get('crawler', 'api_passwd')
-WHOOSH_ENABLED = True
-
SQLALCHEMY_DATABASE_URI = config.get('database', 'database_url')
-HTTP_PROXY = config.get('crawler', 'http_proxy')
USER_AGENT = config.get('crawler', 'user_agent')
RESOLVE_ARTICLE_URL = config.getboolean('crawler',
'resolve_article_url')
bgstack15