Tom Hubrecht
385c0d6605
Some checks failed
Check meta / check_meta (pull_request) Successful in 20s
Check meta / check_dns (pull_request) Successful in 21s
Check workflows / check_workflows (pull_request) Successful in 21s
Run pre-commit on all files / check (push) Successful in 23s
Build all the nodes / bridge01 (pull_request) Successful in 57s
Build all the nodes / geo01 (pull_request) Successful in 56s
Build all the nodes / geo02 (pull_request) Successful in 1m9s
Build all the nodes / rescue01 (pull_request) Successful in 1m9s
Build all the nodes / storage01 (pull_request) Successful in 57s
Build all the nodes / vault01 (pull_request) Successful in 1m6s
Build all the nodes / web02 (pull_request) Successful in 1m1s
Run pre-commit on all files / check (pull_request) Successful in 25s
Build all the nodes / web03 (pull_request) Successful in 1m0s
Build all the nodes / web01 (pull_request) Successful in 1m35s
Build all the nodes / compute01 (pull_request) Failing after 9m1s
95 lines
2.6 KiB
Nix
95 lines
2.6 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
sources,
|
|
...
|
|
}:
|
|
|
|
let
|
|
host = "demarches.dgnum.eu";
|
|
|
|
dgn-id = "f270f1cdd09e643a9c666c94df1841234430de49";
|
|
in
|
|
{
|
|
imports = [ ./module.nix ];
|
|
|
|
dgn-web.internalPorts.ds-fr = 3000;
|
|
|
|
services.demarches-simplifiees = {
|
|
enable = true;
|
|
|
|
package =
|
|
((import sources.nix-pkgs { inherit pkgs; }).demarches-simplifiees.override {
|
|
initialDeploymentDate = "20230923";
|
|
}).overrideAttrs
|
|
(old: {
|
|
dsModules = old.dsModules.overrideAttrs {
|
|
prePatch = ''
|
|
${pkgs.lib.getExe pkgs.git} apply -p1 < ${builtins.fetchurl "https://git.dgnum.eu/DGNum/demarches-normaliennes/commit/${dgn-id}.patch"}
|
|
'';
|
|
};
|
|
});
|
|
|
|
secretFile = config.age.secrets."ds-fr-secret_file".path;
|
|
|
|
initialDeploymentDate = "20230923";
|
|
|
|
settings = {
|
|
APP_HOST = host;
|
|
|
|
# Disable France Connect and Agent Connect
|
|
FRANCE_CONNECT_ENABLED = "disabled";
|
|
AGENT_CONNECT_ENABLED = "disabled";
|
|
|
|
# S3 storage setup
|
|
ACTIVE_STORAGE_SERVICE = "local";
|
|
|
|
# SAML_IDP_ENABLED = "enabled";
|
|
|
|
# Optional settings
|
|
APPLICATION_NAME = ''"Démarches normaliennes"'';
|
|
APPLICATION_SHORTNAME = "d-s.dgnum.eu";
|
|
APPLICATION_BASE_URL = "https://${host}";
|
|
|
|
# SMTP setup, TODO: Fix and stop using sendmail
|
|
CLASSIC_SMTP_ENABLED = "enabled";
|
|
SMTP_HOST = "kurisu.lahfa.xyz";
|
|
SMTP_PORT = "465";
|
|
SMTP_USER = "web-services@infra.dgnum.eu";
|
|
SMTP_TLS = "";
|
|
SMTP_SSL = "true";
|
|
SMTP_AUTHENTICATION = "plain";
|
|
|
|
SUPER_ADMIN_OTP_ENABLED = "disabled";
|
|
|
|
CONTACT_EMAIL = "demarches@infra.dgnum.eu";
|
|
EQUIPE_EMAIL = "equipe@infra.dgnum.eu";
|
|
TECH_EMAIL = "tech@infra.dgnum.eu";
|
|
NO_REPLY_EMAIL = ''"Ne pas répondre <demarches@infra.dgnum.eu>"'';
|
|
OLD_CONTACT_EMAIL = "";
|
|
CONTACT_PHONE = "";
|
|
|
|
STATUS_URL = "https://status.dgnum.eu/demarches-normaliennes";
|
|
|
|
DEMANDE_INSCRIPTION_ADMIN_PAGE_URL = "https://demarches.dgnum.eu/commencer/demande-d-inscription-demarches-normaliennes";
|
|
DOC_URL = "https://docs.dgnum.eu/s/demarches-normaliennes";
|
|
|
|
ADMINS_GROUP_ENABLED = "enabled";
|
|
|
|
RUBY_YJIT_ENABLE = "1";
|
|
|
|
STRICT_EMAIL_VALIDATION_STARTS_ON = "2024-02-23";
|
|
WEASYPRINT_URL = "http://127.0.0.1:5000/pdf";
|
|
|
|
# Customization
|
|
# HEADER_LOGO_SRC = "logo_ens_psl_couleur.png";
|
|
# HEADER_LOGO_ALT = "Par la Recherche, pour la Recherche";
|
|
# PROCEDURE_DEFAULT_LOGO_SRC = "logo_ens_psl_couleur.png";
|
|
};
|
|
};
|
|
|
|
age-secrets.autoMatch = [ "ds-fr" ];
|
|
|
|
dgn-backups.jobs.ds-fr.settings.paths = [ "/var/lib/ds-fr" ];
|
|
dgn-backups.postgresDatabases = [ "ds-fr" ];
|
|
}
|