aboutsummaryrefslogtreecommitdiff
path: root/src/conf/conf.cfg-sample
blob: ed14a4d9d0cc6bc5a5648e7313034e56cea6d04d (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
[webserver]
host = 0.0.0.0
port = 5000
secret_key = a secret only you know
debug = true
[cdn]
cdn_address = https://cdn.cedricbonhomme.org/
[misc]
platform_url = http://127.0.0.1:5000/
admin_email =
security_password_salt = a secret to confirm user account
token_validity_period = 3600
log_path = ./var/log/newspipe.log
log_level = info
[database]
database_url = sqlite:///newspipe.db
[crawler]
crawling_method = default
default_max_error = 6
user_agent = Newspipe (https://gitlab.com/newspipe/newspipe)
timeout = 30
resolv = false
feed_refresh_interval = 120
[notification]
notification_email = Newspipe@no-reply.com
host = smtp.googlemail.com
port = 465
tls = false
ssl = true
username = your-gmail-username
password = your-gmail-password
bgstack15