From a41a3da7ce8d548f837c70d924e496eabec37496 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Tue, 4 Mar 2025 09:50:47 -0500 Subject: Add Monica configuration for Omni/Cloud Configure Monica on Omni/Cloud. I had to setup PHP FastCGI so that nginx handles the PHP requests properly, and setup an email address for the service. --- Omni/Cloud/Web.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Omni/Cloud/Web.nix') diff --git a/Omni/Cloud/Web.nix b/Omni/Cloud/Web.nix index 1225247..79886c3 100644 --- a/Omni/Cloud/Web.nix +++ b/Omni/Cloud/Web.nix @@ -103,6 +103,14 @@ in { user = "nginx"; group = "nginx"; + # Add PHP configuration for Monica + appendHttpConfig = '' + # PHP FastCGI configuration for Monica + upstream php-handler { + server unix:/run/phpfpm/monica.sock; + } + ''; + virtualHosts = { ${rootDomain} = { serverName = rootDomain; @@ -149,6 +157,9 @@ in { useACMEHost = rootDomain; }; + # Monica virtual host configuration is handled by the Monica service + # Don't add a manual entry here to avoid conflicts + "hoogle.${rootDomain}" = { locations."/".proxyPass = "http://${ports.bensIp}:${toString ports.hoogle}"; forceSSL = true; @@ -288,6 +299,7 @@ in { "sd" "gerrit" "git" + "monica" # xmpp stuff "upload" "conference" -- cgit v1.2.3