From 305922df8aa5aae8d930ea3e23fbddb3b16b215a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Sat, 23 Oct 2021 11:14:42 +0200 Subject: Add new Patrick website and reorganise files --- .../websites/patrick_fodella/altermondia.nix | 73 ++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 modules/private/websites/patrick_fodella/altermondia.nix (limited to 'modules/private/websites/patrick_fodella/altermondia.nix') diff --git a/modules/private/websites/patrick_fodella/altermondia.nix b/modules/private/websites/patrick_fodella/altermondia.nix new file mode 100644 index 0000000..2a41aa3 --- /dev/null +++ b/modules/private/websites/patrick_fodella/altermondia.nix @@ -0,0 +1,73 @@ +{ lib, pkgs, config, ... }: +let + cfg = config.myServices.websites.patrick_fodella.altermondia; + varDir = "/var/lib/ftp/patrick_fodella/altermondia"; + apacheUser = config.services.httpd.Prod.user; + apacheGroup = config.services.httpd.Prod.group; +in { + options.myServices.websites.patrick_fodella.altermondia.enable = lib.mkEnableOption "enable Patrick Fodella Altermondia's website"; + + config = lib.mkIf cfg.enable { + services.webstats.sites = [ { name = "altermondia.org"; } ]; + + system.activationScripts.patrick_fodella_altermondia = { + deps = [ "httpd" ]; + text = '' + install -m 0755 -o ${apacheUser} -g ${apacheGroup} -d /var/lib/php/sessions/patrick_fodella_altermondia + ''; + }; + systemd.services.phpfpm-patrick_fodella_altermondia.after = lib.mkAfter [ "mysql.service" ]; + systemd.services.phpfpm-patrick_fodella_altermondia.wants = [ "mysql.service" ]; + services.phpfpm.pools.patrick_fodella_altermondia = { + 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_altermondia:${varDir}:/tmp"; + "php_admin_value[session.save_path]" = "/var/lib/php/sessions/patrick_fodella_altermondia"; + }; + 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_altermondia = { + certName = "patrick_fodella"; + addToCerts = true; + hosts = ["altermondia.org" "www.altermondia.org" ]; + root = varDir; + extraConfig = [ + '' + Use Stats altermondia.org + + RewriteEngine on + RewriteCond "%{HTTP_HOST}" "!^altermondia\.org$" [NC] + RewriteRule ^(.+)$ https://altermondia.org$1 [R=302,L] + + + SetHandler "proxy:unix:${config.services.phpfpm.pools.patrick_fodella_altermondia.socket}|fcgi://localhost" + + + + AllowOverride None + Require all denied + + + DirectoryIndex index.php index.htm index.html + Options Indexes FollowSymLinks MultiViews Includes + AllowOverride all + Require all granted + + '' + ]; + }; + }; +} + -- cgit v1.2.3