feat(django-apps/interludes): Allow base webapps domain
All checks were successful
Build all the nodes / bridge01 (push) Successful in 1m19s
Build all the nodes / geo01 (push) Successful in 1m18s
Build all the nodes / geo02 (push) Successful in 1m22s
Build all the nodes / storage01 (push) Successful in 1m28s
Build all the nodes / rescue01 (push) Successful in 1m32s
Build all the nodes / compute01 (push) Successful in 1m45s
Run pre-commit on all files / check (push) Successful in 24s
Build all the nodes / web02 (push) Successful in 1m25s
Build all the nodes / web03 (push) Successful in 1m24s
Build all the nodes / vault01 (push) Successful in 1m36s
Build all the nodes / web01 (push) Successful in 1m57s

This commit is contained in:
Tom Hubrecht 2024-11-12 15:08:17 +01:00
parent d45b044b22
commit 2ffd7732ba
Signed by: thubrecht
SSH key fingerprint: SHA256:r+nK/SIcWlJ0zFZJGHtlAoRwq1Rm+WcKAm5ADYMoQPc

View file

@ -18,6 +18,8 @@ in
nginx = { nginx = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;
serverAliases = [ "interludes.webapps.dgnum.eu" ];
}; };
webHookSecret = builtins.toFile "insecure-secret" "T5hNeDraMivRZLUkrekv&QeM"; webHookSecret = builtins.toFile "insecure-secret" "T5hNeDraMivRZLUkrekv&QeM";
@ -46,7 +48,10 @@ in
}; };
environment = { environment = {
INTERLUDES_ALLOWED_HOSTS = [ "interludes.ens.fr" ]; INTERLUDES_ALLOWED_HOSTS = [
"interludes.ens.fr"
"interludes.webapps.dgnum.eu"
];
# E-mail configuration # E-mail configuration
INTERLUDES_SERVER_EMAIL = "noreply-interludes-admin@ens.fr"; INTERLUDES_SERVER_EMAIL = "noreply-interludes-admin@ens.fr";