aboutsummaryrefslogtreecommitdiff
path: root/src/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.py')
-rw-r--r--src/conf.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/conf.py b/src/conf.py
index a5b86608..7f276099 100644
--- a/src/conf.py
+++ b/src/conf.py
@@ -26,20 +26,20 @@ ON_HEROKU = int(os.environ.get('HEROKU', 0)) == 1
DEFAULTS = {"platform_url": "http://www.newspipe.org",
"self_registration": "false",
"cdn_address": "",
- "admin_email": "root@jarr.localhost",
+ "admin_email": "root@newspipe.localhost",
"postmark_api_key": "",
"token_validity_period": "3600",
"nb_worker": "100",
"api_login": "",
"api_passwd": "",
"default_max_error": "3",
- "log_path": "jarr.log",
+ "log_path": "newspipe.log",
"log_level": "info",
- "user_agent": "JARR (https://github.com/JARR)",
+ "user_agent": "Newspipe (https://github.com/Newspipe)",
"secret_key": "",
"security_password_salt": "",
"enabled": "false",
- "notification_email": "jarr@no-reply.com",
+ "notification_email": "newspipe@no-reply.com",
"tls": "false",
"ssl": "true",
"host": "0.0.0.0",
bgstack15