From 0c53af6661a119a9d1da8ee34018787e76f03922 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 15 Nov 2023 11:13:22 +0100 Subject: [PATCH] add allowed hosts, fix title --- app/settings.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app/settings.py b/app/settings.py index d00b0aa1..2aed08ad 100644 --- a/app/settings.py +++ b/app/settings.py @@ -31,6 +31,12 @@ MANAGERS = ADMINS ASGI_APPLICATION = "teleforma.ws.routing.application" +ALLOWED_HOSTS = [ + 'localhost', + 'staging.docker.e-learning.ae.pre-barreau.parisson.com', + 'e-learning.ae.pre-barreau.com', + 'ae.dockdev.pilotsystems.net', +] INTERNAL_IPS = ['127.0.0.1', ] @@ -410,8 +416,8 @@ ALLOWED_HOSTS = [ ] JAZZMIN_SETTINGS = { - "site_title": "CRFPA", - "site_header": "CRFPA", + "site_title": "AE", + "site_header": "Avocats étrangers", "site_logo": "teleforma/images/logo_pb.png", # # Links to put along the top menu -- 2.39.5