X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=modules%2Fprivate%2Fwebsites%2Fisabelle%2Faten_integration.nix;h=0655c7b349f5e59b83181f8232c6b30064425a6d;hb=bbea22c02b6c059a6be1064391f06737ee244ba6;hp=fb6eda977c7a2b881cace05b1084f646dd24efbf;hpb=5400b9b6f65451d41a9106fae6fc00f97d83f4ef;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/modules/private/websites/isabelle/aten_integration.nix b/modules/private/websites/isabelle/aten_integration.nix index fb6eda9..0655c7b 100644 --- a/modules/private/websites/isabelle/aten_integration.nix +++ b/modules/private/websites/isabelle/aten_integration.nix @@ -1,29 +1,30 @@ { lib, pkgs, config, ... }: let secrets = config.myEnv.websites.isabelle.aten_integration; - app = pkgs.webapps.aten.override { environment = secrets.environment; }; cfg = config.myServices.websites.isabelle.aten_integration; - pcfg = config.services.phpApplication; + ftpRoot = "/var/lib/isabelle_aten_integration"; + phpRoot = "${ftpRoot}/php"; + webRoot = "${phpRoot}/public"; + varDir = "${ftpRoot}/var"; + packagePath = "/var/lib/ftp/release.immae.eu/buildbot/IsabelleAten"; + branch = "test"; in { options.myServices.websites.isabelle.aten_integration.enable = lib.mkEnableOption "enable Aten's website in integration"; config = lib.mkIf cfg.enable { - services.duplyBackup.profiles.aten_dev.rootDir = app.varDir; - services.phpApplication.apps.aten_dev = { - websiteEnv = "integration"; - httpdUser = config.services.httpd.Inte.user; - httpdGroup = config.services.httpd.Inte.group; - httpdWatchFiles = [ - config.secrets.fullPaths."webapps/${app.environment}-aten" - ]; - inherit (app) webRoot varDir; - inherit app; - serviceDeps = [ "postgresql.service" ]; - preStartActions = [ - "APP_ENV=${app.environment} ./bin/console --env=${app.environment} cache:clear --no-warmup" - ]; - phpOpenbasedir = [ "/tmp" ]; - phpPool = { + services.phpfpm.pools.isabelle_aten_integration = { + user = config.services.httpd.Inte.user; + group = config.services.httpd.Inte.group; + settings = { + "listen.owner" = config.services.httpd.Inte.user; + "listen.group" = config.services.httpd.Inte.group; + "php_admin_value[open_basedir]" = builtins.concatStringsSep ":" [ + ftpRoot + config.secrets.fullPaths."websites/isabelle/aten_integration" + "/tmp" + ]; + "php_admin_value[session.save_handler]" = "redis"; + "php_admin_value[session.save_path]" = "'unix:///run/redis-php-sessions/redis.sock?persistent=1&prefix=Isabelle:AtenIntegration:'"; "php_admin_value[upload_max_filesize]" = "20M"; "php_admin_value[post_max_size]" = "20M"; #"php_admin_flag[log_errors]" = "on"; @@ -32,12 +33,62 @@ in { "pm.process_idle_timeout" = "60"; }; phpEnv = { - SYMFONY_DEBUG_MODE = "yes"; + SYMFONY_DEBUG_MODE = "\"yes\""; }; + phpPackage = pkgs.php72.withExtensions ({ enabled, all }: enabled ++ [all.redis]); + }; + systemd.services."phpfpm-isabelle_aten_integration" = { + after = lib.mkAfter ["postgresql.service"]; + wants = ["postgresql.service"]; + path = lib.mkAfter [ pkgs.gnutar pkgs.gzip pkgs.php72 ]; + preStart = let + script = pkgs.writeScriptBin "isabelle-aten-integration" '' + #! ${pkgs.stdenv.shell} + + [ -f ${packagePath}/${branch}.tar.gz ] || exit 1 + + cd ${ftpRoot} + if ! [ -f .tarball_sum ] || ! sha256sum -c .tarball_sum; then + tar -xf ${packagePath}/${branch}.tar.gz --one-top-level=php_new + if [ -d php ]; then + mv php php_old + fi + mv php_new php + fi + cd php + rm -rf var/{log,cache} + ln -sf ${varDir}/{log,cache} var/ + SYMFONY_ENV=dev APP_ENV=dev ./bin/console --env=dev cache:clear --no-warmup + sha256sum ${packagePath}/${branch}.tar.gz > ${ftpRoot}/.tarball_sum + ''; + in + "/run/wrappers/bin/sudo -u ${config.services.httpd.Inte.user} ${script}/bin/isabelle-aten-integration"; + postStart = let + script = pkgs.writeScriptBin "isabelle-aten-integration-post" '' + #! ${pkgs.stdenv.shell} + + cd ${ftpRoot} + if [ -d php_old ]; then + rm -rf php_old + fi + ''; + in + "/run/wrappers/bin/sudo -u ${config.services.httpd.Inte.user} ${script}/bin/isabelle-aten-integration-post"; + serviceConfig.TimeoutStartSec="infinity"; + }; + services.filesWatcher.phpfpm-isabelle_aten_integration = { + restart = true; + paths = [ "${packagePath}/${branch}.tar.gz" ]; }; - secrets.keys = [{ - dest = "webapps/${app.environment}-aten"; + system.activationScripts.isabelle_aten_integration = { + deps = ["users"]; + text = '' + install -m 0700 -o ${config.services.httpd.Inte.user} -g ${config.services.httpd.Inte.group} -d ${ftpRoot} + ''; + }; + + secrets.keys."websites/isabelle/aten_integration" = { user = config.services.httpd.Inte.user; group = config.services.httpd.Inte.group; permissions = "0400"; @@ -47,37 +98,37 @@ in { # vendor/doctrine/dbal/lib/Doctrine/DBAL/DriverManager.php#parseDatabaseUrlQuery psql_url = with secrets.postgresql; "pdo-pgsql://${user}:${password}@invalid:${port}/${database}?host=${socket}"; in '' - SetEnv APP_ENV "${app.environment}" + SetEnv APP_ENV "${secrets.environment}" SetEnv APP_SECRET "${secrets.secret}" SetEnv DATABASE_URL "${psql_url}" ''; - }]; - services.websites.env.integration.vhostConfs.aten_dev = { + }; + services.websites.env.integration.vhostConfs.isabelle_aten_integration = { certName = "integration"; addToCerts = true; - hosts = [ "dev.aten.pro" ]; - root = pcfg.webappDirs.aten_dev; + hosts = [ "aten.ic.immae.dev" ]; + root = webRoot; extraConfig = [ '' - SetHandler "proxy:unix:${pcfg.phpListenPaths.aten_dev}|fcgi://localhost" + SetHandler "proxy:unix:${config.services.phpfpm.pools.isabelle_aten_integration.socket}|fcgi://localhost" - Include ${config.secrets.fullPaths."webapps/${app.environment}-aten"} + Include ${config.secrets.fullPaths."websites/isabelle/aten_integration"} Use LDAPConnect - Require ldap-group cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu + Require ldap-group cn=ic.immae.dev,cn=httpd,ou=services,dc=immae,dc=eu ErrorDocument 401 "" Use LDAPConnect - Require ldap-group cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu + Require ldap-group cn=ic.immae.dev,cn=httpd,ou=services,dc=immae,dc=eu ErrorDocument 401 "" - + Options Indexes FollowSymLinks MultiViews Includes AllowOverride All Require all granted