X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=virtual%2Feldiron.nix;h=4087be8e9758935dd4652b101230c16cf5e685e0;hb=94818b7506f7284e2115863364b571daf0b5f5fc;hp=38f753c7f1469602aba7846b05c59d5deefab64b;hpb=cbc248ed9c13781b3beca56c902531b3ae056041;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/virtual/eldiron.nix b/virtual/eldiron.nix index 38f753c..4087be8 100644 --- a/virtual/eldiron.nix +++ b/virtual/eldiron.nix @@ -6,6 +6,7 @@ eldiron = { config, pkgs, ... }: let mypkgs = import ./packages.nix; + mylibs = import ../libs.nix; in { networking = { @@ -35,36 +36,53 @@ }; }; - # FIXME: how to run it? currently set as timer + environment.systemPackages = [ + pkgs.telnet + pkgs.vim + ]; + security.acme.certs = { "eldiron" = { webroot = "/var/lib/acme/acme-challenge"; email = "ismael@bouya.org"; domain = "eldiron.immae.eu"; + plugins = [ "cert.pem" "chain.pem" "fullchain.pem" "full.pem" "key.pem" "account_key.json" ]; + postRun = '' + systemctl reload httpd.service + ''; extraDomains = { "db-1.immae.eu" = null; + "tools.immae.eu" = null; + "connexionswing.immae.eu" = null; + "sandetludo.immae.eu" = null; }; }; + # "connexionswing" = { + # webroot = "/var/lib/acme/acme-challenge"; + # email = "ismael@bouya.org"; + # domain = "connexionswing.com"; + # plugins = [ "cert.pem" "chain.pem" "fullchain.pem" "full.pem" "key.pem" "account_key.json" ]; + # postRun = '' + # systemctl reload httpd.service + # ''; + # extraDomains = { + # "www.connexionswing.com" = null; + # "sandetludo.com" = null; + # "www.sandetludo.com" = null; + # }; + # }; }; - # FIXME: open_basedir + services.ympd = mypkgs.ympd.config // { enable = true; }; + services.phpfpm = { extraConfig = '' log_level = notice ''; poolConfigs = { - adminer = '' - listen = /var/run/phpfpm/adminer.sock - user = wwwrun - group = wwwrun - listen.owner = wwwrun - listen.group = wwwrun - pm = ondemand - pm.max_children = 5 - pm.process_idle_timeout = 60 - ;php_admin_flag[log_errors] = on - php_admin_value[open_basedir] = "${mypkgs.adminer}:/tmp" - ''; + adminer = mypkgs.adminer.phpFpm.pool; + connexionswing_dev = mypkgs.connexionswing_dev.phpFpm.pool; + connexionswing_prod = mypkgs.connexionswing_prod.phpFpm.pool; www = '' listen = /var/run/phpfpm/www.sock user = wwwrun @@ -80,21 +98,83 @@ }; }; + system.activationScripts = { + connexionswing_dev = mypkgs.connexionswing_dev.activationScript; + connexionswing_prod = mypkgs.connexionswing_prod.activationScript; + httpd = '' + install -d -m 0755 /var/lib/acme/acme-challenge + install -d -m 0755 /var/www + ''; + }; + services.httpd = let withSSL = domain: { enableSSL = true; - sslServerCert = "/var/lib/acme/${domain}/full.pem"; # FIXME: cert only? + sslServerCert = "/var/lib/acme/${domain}/cert.pem"; sslServerKey = "/var/lib/acme/${domain}/key.pem"; sslServerChain = "/var/lib/acme/${domain}/fullchain.pem"; }; + apacheConfig = { + gzip = { + modules = [ "deflate" "filter" ]; + extraConfig = '' + AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript + ''; + }; + ldap = { + modules = [ "ldap" "authnz_ldap" ]; + extraConfig = assert mylibs.checkEnv "NIXOPS_HTTP_LDAP_PASSWORD"; '' + + LDAPSharedCacheSize 500000 + LDAPCacheEntries 1024 + LDAPCacheTTL 600 + LDAPOpCacheEntries 1024 + LDAPOpCacheTTL 600 + + + + + AuthLDAPURL ldap://ldap.immae.eu:389/dc=immae,dc=eu + AuthLDAPBindDN cn=httpd,ou=services,dc=immae,dc=eu + AuthLDAPBindPassword "${builtins.getEnv "NIXOPS_HTTP_LDAP_PASSWORD"}" + AuthType Basic + AuthName "Authentification requise (Acces LDAP)" + AuthBasicProvider ldap + + + ''; + }; + }; in rec { enable = true; logPerVirtualHost = true; multiProcessingModule = "worker"; adminAddr = "httpd@immae.eu"; - extraModules = [ - "proxy_fcgi" # for PHP - ]; + # FIXME: http2 + # FIXME: voir les autres modules: + # authz_core_module + # reqtimeout_module + # http2_module + # version_module + # proxy_connect_module + # proxy_ftp_module + # proxy_scgi_module + # proxy_ajp_module + # proxy_balancer_module + # proxy_express_module + # lbmethod_byrequests_module + # lbmethod_bytraffic_module + # lbmethod_bybusyness_module + # lbmethod_heartbeat_module + + extraModules = pkgs.lib.lists.unique ( + mypkgs.adminer.apache.modules ++ + mypkgs.connexionswing_dev.apache.modules ++ + mypkgs.connexionswing_prod.apache.modules ++ + pkgs.lib.lists.flatten (pkgs.lib.attrsets.mapAttrsToList (n: v: v.modules) apacheConfig) ++ + [ "macro" ]); + extraConfig = builtins.concatStringsSep "\n" + (pkgs.lib.attrsets.mapAttrsToList (n: v: v.extraConfig) apacheConfig); virtualHosts = [ (withSSL "eldiron" // { listen = [ { ip = "*"; port = 443; } ]; @@ -106,22 +186,33 @@ listen = [ { ip = "*"; port = 443; } ]; hostName = "db-1.immae.eu"; documentRoot = null; - extraConfig = '' - Alias /adminer ${mypkgs.adminer} - - DirectoryIndex = index.php - - SetHandler "proxy:unix:/var/run/phpfpm/adminer.sock|fcgi://localhost" - - - ''; + extraConfig = builtins.concatStringsSep "\n" [ + mypkgs.adminer.apache.vhostConf + ]; + }) + (withSSL "eldiron" // { + listen = [ { ip = "*"; port = 443; } ]; + hostName = "tools.immae.eu"; + documentRoot = null; + extraConfig = builtins.concatStringsSep "\n" [ + mypkgs.adminer.apache.vhostConf + mypkgs.ympd.apache.vhostConf + ]; + }) + (withSSL "eldiron" // { + listen = [ { ip = "*"; port = 443; } ]; + hostName = "connexionswing.immae.eu"; + serverAliases = [ "sandetludo.immae.eu" ]; + documentRoot = mypkgs.connexionswing_dev.webRoot; + extraConfig = builtins.concatStringsSep "\n" [ + mypkgs.connexionswing_dev.apache.vhostConf + ]; }) { # Should go last, default fallback listen = [ { ip = "*"; port = 80; } ]; hostName = "redirectSSL"; serverAliases = [ "*" ]; enableSSL = false; - # FIXME: directory needs to exist documentRoot = "/var/lib/acme/acme-challenge"; extraConfig = '' RewriteEngine on @@ -135,10 +226,10 @@ ]; }; - # FIXME: environment variables ? security.pam.services = let pam_ldap = pkgs.pam_ldap; - pam_ldap_mysql = pkgs.writeText "mysql.conf" '' + pam_ldap_mysql = assert mylibs.checkEnv "NIXOPS_MYSQL_PAM_PASSWORD"; + pkgs.writeText "mysql.conf" '' host ldap.immae.eu base dc=immae,dc=eu binddn cn=mysql,cn=pam,ou=services,dc=immae,dc=eu @@ -160,6 +251,7 @@ # FIXME: backup # FIXME: restart after pam # FIXME: pam access doesn’t work (because of php module) + # FIXME: ssl services.mysql = rec { enable = true; package = pkgs.mariadb.overrideAttrs(old: rec { @@ -170,6 +262,7 @@ # FIXME: initial sync # FIXME: backup + # FIXME: ssl services.postgresql = rec { enable = true; package = pkgs.postgresql100.overrideAttrs(old: rec {