From 13a358ab311f18254f7a4df65ae3800081c4986d Mon Sep 17 00:00:00 2001 From: Alexandre Iooss Date: Sat, 29 Jan 2022 20:08:47 +0100 Subject: [PATCH] Update default settings --- photo21/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/photo21/settings.py b/photo21/settings.py index f6c0917..33d4a47 100644 --- a/photo21/settings.py +++ b/photo21/settings.py @@ -26,7 +26,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) SECRET_KEY = 'CHANGE_ME' # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = True +DEBUG = False ALLOWED_HOSTS = [ "127.0.0.1", @@ -37,12 +37,12 @@ ALLOWED_HOSTS = [ # Admins receive server errors, this is useful to be notified of potential bugs ADMINS = [ - ('erdnaxe', 'a+photo21@crans.org'), + ('admin', 'photos-admin@lists.crans.org'), ] # Managers receive notifications about new photos upload MANAGERS = [ - ('moderation', 'photos@crans.org'), + ('moderation', 'photos-admin@lists.crans.org'), ]