aboutsummaryrefslogtreecommitdiff
path: root/vagrant/conf.cfg-sample
blob: ac34c2f4b47a1e760a383c36e1846f59d4b84281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[webserver]
host = 0.0.0.0
port = 5000
secret = a secret only you know
[cdn]
cdn_address = https://cdn.cedricbonhomme.org/
[misc]
platform_url = http://127.0.0.1:5000/
admin_email =
recaptcha_public_key =
recaptcha_private_key =
log_path = ./web/var/jarr.log
nb_worker = 5
log_level = info
[database]
database_url = postgres://vagrant:xxYzToW42@127.0.0.1:5432/aggregator
[crawler]
crawling_method = classic
default_max_error = 6
http_proxy =
user_agent = JARR (https://github.com/JARR-aggregator/JARR)
resolve_article_url = false
api_login =
api_passwd =
[notification]
notification_email = JARR@no-reply.com
host = smtp.googlemail.com
port = 465
tls = false
ssl = true
username = your-gmail-username
password = your-gmail-password
bgstack15