aboutsummaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-04-12 21:44:20 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-04-14 08:49:15 +0200
commitdc0cf1a2789293bb3459ea8fe1f611edda075eba (patch)
treeaf1755fb38baac94c3efa37eacc11e0d04c2a6dc /conf
parentRemoved a link pointing to a deleted page. (diff)
downloadnewspipe-dc0cf1a2789293bb3459ea8fe1f611edda075eba.tar.gz
newspipe-dc0cf1a2789293bb3459ea8fe1f611edda075eba.tar.bz2
newspipe-dc0cf1a2789293bb3459ea8fe1f611edda075eba.zip
redoing conf gathering and using it in templates
Diffstat (limited to 'conf')
-rw-r--r--conf/conf.cfg-sample9
1 files changed, 5 insertions, 4 deletions
diff --git a/conf/conf.cfg-sample b/conf/conf.cfg-sample
index b257a236..159af449 100644
--- a/conf/conf.cfg-sample
+++ b/conf/conf.cfg-sample
@@ -11,10 +11,11 @@ uri = postgres://pgsqluser:pgsqlpwd@127.0.0.1:5432/aggregator
[feedparser]
http_proxy =
user_agent = pyAggr3g470r (https://bitbucket.org/cedricbonhomme/pyaggr3g470r)
-resolve_article_url = 0
+resolve_article_url = false
default_max_error = 6
+crawling_method = classic
[webserver]
-debug = 1
+debug = true
host = 0.0.0.0
port = 5000
secret = a secret only you know
@@ -22,7 +23,7 @@ secret = a secret only you know
email = pyAggr3g470r@no-reply.com
host = smtp.googlemail.com
port = 465
-tls = 0
-ssl = 1
+tls = false
+ssl = true
username = your-gmail-username
password = your-gmail-password
bgstack15