]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Add php configuration and switch to httpd instead of nginx
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Fri, 28 Dec 2018 16:02:01 +0000 (17:02 +0100)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Fri, 28 Dec 2018 16:02:01 +0000 (17:02 +0100)
virtual/eldiron.nix

index 1c2fca6dad8bb850c88269aa19e74c2d5867c4a4..55b0bf713424cd6915e400df0a2d6608a7f3cab2 100644 (file)
       };
     };
 
-    services.nginx = rec {
+    # FIXME: open_basedir
+    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"
+          '';
+        www = ''
+          listen = /var/run/phpfpm/www.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] = "/var/www"
+          '';
+      };
+    };
+
+    services.httpd = let
+      withSSL = domain: {
+        enableSSL = true;
+        sslServerCert = "/var/lib/acme/${domain}/full.pem"; # FIXME: cert only?
+        sslServerKey = "/var/lib/acme/${domain}/key.pem";
+        sslServerChain = "/var/lib/acme/${domain}/fullchain.pem";
+      };
+    in rec {
       enable = true;
+      logPerVirtualHost = true;
+      multiProcessingModule = "worker";
+      adminAddr = "httpd@immae.eu";
+      extraModules = [
+        "proxy_fcgi" # for PHP
+      ];
+      virtualHosts = [
+        (withSSL "eldiron" // {
+          listen = [ { ip = "*"; port = 443; } ];
+          hostName = "eldiron.immae.eu";
+          # FIXME: directory needs to exist
+          documentRoot = "/var/www";
+        })
+        (withSSL "eldiron" // {
+          listen = [ { ip = "*"; port = 443; } ];
+          hostName = "db-1.immae.eu";
+          documentRoot = null;
+          extraConfig = ''
+            Alias /adminer ${mypkgs.adminer}
+            <Directory ${mypkgs.adminer}>
+              DirectoryIndex = index.php
+              <FilesMatch "\.php$">
+                SetHandler "proxy:unix:/var/run/phpfpm/adminer.sock|fcgi://localhost"
+              </FilesMatch>
+            </Directory>
+            '';
+        })
+        { # 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
+            RewriteCond "%{REQUEST_URI}"   "!^/\.well-known"
+            RewriteRule ^(.+)              https://%{HTTP_HOST}$1  [R=301]
+            # To redirect in specific "VirtualHost *:80", do
+            #   RedirectMatch 301 ^/((?!\.well-known.*$).*)$ https://host/$1
+            # rather than rewrite
+            '';
+        }
+        ];
+    };
+
+    services.nginx = rec {
+      enable = false;
       virtualHosts = {
         "_" = {
           serverName = "_";
           locations."/" = {
             # FIXME: directory needs to exist
             root = "/var/www";
+            extraConfig = ''
+              include ${pkgs.nginx}/conf/fastcgi.conf;
+              fastcgi_split_path_info ^(.+?\.php)(/.*)$;
+              fastcgi_param HTTP_PROXY "";
+              fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+              fastcgi_pass unix:/var/run/phpfpm/www.sock;
+              fastcgi_index index.php;
+              fastcgi_intercept_errors on;
+              '';
+          };
+        };
+        "db-1.immae.eu" = {
+          forceSSL = true;
+          useACMEHost = "eldiron";
+          locations."/adminer" = {
+            alias = mypkgs.adminer;
+            index = "index.php";
+            extraConfig = ''
+              include ${pkgs.nginx}/conf/fastcgi.conf;
+              fastcgi_split_path_info ^(.+?\.php)(/.*)$;
+              fastcgi_param HTTP_PROXY "";
+              fastcgi_param SCRIPT_FILENAME ${mypkgs.adminer}/index.php;
+              fastcgi_pass unix:/var/run/phpfpm/adminer.sock;
+              fastcgi_index index.php;
+              fastcgi_intercept_errors on;
+              '';
           };
         };
       };