]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Add Patrick Fodella’s website
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Thu, 17 Sep 2020 15:22:48 +0000 (17:22 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Thu, 17 Sep 2020 15:22:48 +0000 (17:22 +0200)
modules/private/default.nix
modules/private/websites/default.nix
modules/private/websites/patrick_fodella/production.nix [new file with mode: 0644]
nixops/secrets

index 9ea136e5cc0825fcfd374212936a1914de71f129..b821488dd35ea8ce4e88ebe2d846c03d07f9cb8c 100644 (file)
@@ -63,6 +63,8 @@ set = {
   papaMaisonBbc = ./websites/papa/maison_bbc.nix;
   papaSurveillance = ./websites/papa/surveillance.nix;
 
   papaMaisonBbc = ./websites/papa/maison_bbc.nix;
   papaSurveillance = ./websites/papa/surveillance.nix;
 
+  patrickFodellaProd = ./websites/patrick_fodella/production.nix;
+
   piedsjalouxInte = ./websites/piedsjaloux/integration.nix;
   piedsjalouxProd = ./websites/piedsjaloux/production.nix;
 
   piedsjalouxInte = ./websites/piedsjaloux/integration.nix;
   piedsjalouxProd = ./websites/piedsjaloux/production.nix;
 
index 946705590b7ccc148d5d611914d34d430e45678e..90a8c1a837da6b91d69a5f2d49828b0c8d4dc616 100644 (file)
@@ -284,6 +284,8 @@ in
         maison_bbc.enable = true;
       };
 
         maison_bbc.enable = true;
       };
 
+      patrick_fodella.production.enable = true;
+
       piedsjaloux = {
         integration.enable = true;
         production.enable = true;
       piedsjaloux = {
         integration.enable = true;
         production.enable = true;
diff --git a/modules/private/websites/patrick_fodella/production.nix b/modules/private/websites/patrick_fodella/production.nix
new file mode 100644 (file)
index 0000000..2812cf7
--- /dev/null
@@ -0,0 +1,72 @@
+{ lib, pkgs, config,  ... }:
+let
+  cfg = config.myServices.websites.patrick_fodella.production;
+  varDir = "/var/lib/ftp/patrick_fodella";
+  apacheUser = config.services.httpd.Prod.user;
+  apacheGroup = config.services.httpd.Prod.group;
+in {
+  options.myServices.websites.patrick_fodella.production.enable = lib.mkEnableOption "enable Patrick Fodella's website";
+
+  config = lib.mkIf cfg.enable {
+    services.webstats.sites = [ { name = "ecolyeu-pessicart-nice.fr"; } ];
+
+    system.activationScripts.patrick_fodella = {
+      deps = [ "httpd" ];
+      text = ''
+        install -m 0755 -o ${apacheUser} -g ${apacheGroup} -d /var/lib/php/sessions/patrick_fodella
+        '';
+    };
+    systemd.services.phpfpm-patrick_fodella.after = lib.mkAfter [ "mysql.service" ];
+    systemd.services.phpfpm-patrick_fodella.wants = [ "mysql.service" ];
+    services.phpfpm.pools.patrick_fodella = {
+      user = apacheUser;
+      group = apacheGroup;
+      settings = {
+        "listen.owner" = apacheUser;
+        "listen.group" = apacheGroup;
+
+        "pm" = "ondemand";
+        "pm.max_children" = "5";
+        "pm.process_idle_timeout" = "60";
+
+        "php_admin_value[open_basedir]" = "/var/lib/php/sessions/patrick_fodella:${varDir}:/tmp";
+        "php_admin_value[session.save_path]" = "/var/lib/php/sessions/patrick_fodella";
+      };
+      phpOptions = config.services.phpfpm.phpOptions + ''
+        disable_functions = "mail"
+      '';
+      phpPackage = pkgs.php72;
+    };
+    services.websites.env.production.modules = [ "proxy_fcgi" ];
+    services.websites.env.production.vhostConfs.patrick_fodella = {
+      certName     = "patrick_fodella";
+      certMainHost = "ecolyeu-pessicart-nice.fr";
+      hosts        = ["ecolyeu-pessicart-nice.fr" "www.ecolyeu-pessicart-nice.fr" ];
+      root         = varDir;
+      extraConfig  = [
+        ''
+        Use Stats ecolyeu-pessicart-nice.fr
+
+        RewriteEngine on
+        RewriteCond "%{HTTP_HOST}" "!^www\.ecolyeu-pessicart-nice\.fr$" [NC]
+        RewriteRule ^(.+)$ https://www.ecolyeu-pessicart-nice.fr$1 [R=302,L]
+
+        <FilesMatch "\.php$">
+          SetHandler "proxy:unix:${config.services.phpfpm.pools.patrick_fodella.socket}|fcgi://localhost"
+        </FilesMatch>
+
+        <Location /xmlrpc.php>
+          AllowOverride None
+          Require all denied
+        </Location>
+        <Directory ${varDir}>
+          DirectoryIndex index.php index.htm index.html
+          Options Indexes FollowSymLinks MultiViews Includes
+          AllowOverride all
+          Require all granted
+        </Directory>
+          ''
+      ];
+    };
+  };
+}
index cfb6165e897cdf8c58b267c7222328e2a645db00..4ce3c27d2e3db66640a5478aae93b813b7005061 160000 (submodule)
@@ -1 +1 @@
-Subproject commit cfb6165e897cdf8c58b267c7222328e2a645db00
+Subproject commit 4ce3c27d2e3db66640a5478aae93b813b7005061