aboutsummaryrefslogtreecommitdiff
path: root/conf/conf.cfg-sample
diff options
context:
space:
mode:
Diffstat (limited to 'conf/conf.cfg-sample')
-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