{ lib, rainloop, writeText, stdenv, fetchurl }: rec { varDir = "/var/lib/rainloop"; activationScript = { deps = [ "wrappers" ]; text = '' install -m 0755 -o ${apache.user} -g ${apache.group} -d ${varDir} install -m 0750 -o ${apache.user} -g ${apache.group} -d ${varDir}/phpSessions install -m 0750 -o ${apache.user} -g ${apache.group} -d ${varDir}/data ''; }; webRoot = rainloop.override { dataPath = "${varDir}/data"; }; apache = rec { user = "wwwrun"; group = "wwwrun"; modules = [ "proxy_fcgi" ]; root = webRoot; vhostConf = socket: '' Alias /rainloop "${root}" DirectoryIndex index.php AllowOverride All Options -FollowSymlinks Require all granted SetHandler "proxy:unix:${socket}|fcgi://localhost" Require all denied ''; }; phpFpm = rec { serviceDeps = [ "postgresql.service" ]; basedir = builtins.concatStringsSep ":" [ webRoot varDir ]; pool = { "listen.owner" = apache.user; "listen.group" = apache.group; "pm" = "ondemand"; "pm.max_children" = "60"; "pm.process_idle_timeout" = "60"; # Needed to avoid clashes in browser cookies (same domain) "php_value[session.name]" = "RainloopPHPSESSID"; "php_admin_value[upload_max_filesize]" = "200M"; "php_admin_value[post_max_size]" = "200M"; "php_admin_value[open_basedir]" = "${basedir}:/tmp"; "php_admin_value[session.save_path]" = "${varDir}/phpSessions"; }; }; }