aboutsummaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-23 08:41:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-23 08:41:12 +0200
commit6ee91b3713a29df2dc6fc7d4f417ae4dbefa4972 (patch)
tree5b65b0435f9f544c0ff4600a68098193985da4c6 /conf
parentUpdated translations. (diff)
downloadnewspipe-6ee91b3713a29df2dc6fc7d4f417ae4dbefa4972.tar.gz
newspipe-6ee91b3713a29df2dc6fc7d4f417ae4dbefa4972.tar.bz2
newspipe-6ee91b3713a29df2dc6fc7d4f417ae4dbefa4972.zip
Automatically use the good Python executable for the classic crawler.
Diffstat (limited to 'conf')
-rw-r--r--conf/conf.cfg-sample17
1 files changed, 8 insertions, 9 deletions
diff --git a/conf/conf.cfg-sample b/conf/conf.cfg-sample
index 76a91323..b141e93c 100644
--- a/conf/conf.cfg-sample
+++ b/conf/conf.cfg-sample
@@ -1,24 +1,23 @@
+[webserver]
+host = 0.0.0.0
+port = 5000
+secret = a secret only you know
[misc]
-platform_url = http://127.0.0.1:5000/
+platform_url = http://0.0.0.0:5000/
admin_email =
recaptcha_public_key =
recaptcha_private_key =
log_path = ./pyaggr3g470r/var/pyaggr3g470r.log
-python = python3.3
nb_worker = 5
log_level = info
[database]
database_url = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5432/aggregator
-[feedparser]
+[crawler]
+crawling_method = classic
+default_max_error = 6
http_proxy =
user_agent = pyAggr3g470r (https://bitbucket.org/cedricbonhomme/pyaggr3g470r)
resolve_article_url = false
-default_max_error = 6
-crawling_method = classic
-[webserver]
-host = 0.0.0.0
-port = 5000
-secret = a secret only you know
[notification]
email = pyAggr3g470r@no-reply.com
host = smtp.googlemail.com
bgstack15