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/Monica.nix | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Omni/Cloud/Monica.nix (limited to 'Omni/Cloud/Monica.nix') diff --git a/Omni/Cloud/Monica.nix b/Omni/Cloud/Monica.nix new file mode 100644 index 0000000..0d6ca65 --- /dev/null +++ b/Omni/Cloud/Monica.nix @@ -0,0 +1,31 @@ +{config, ...}: let + rootDomain = config.networking.domain; +in { + services.monica = { + enable = true; + hostname = "monica.${rootDomain}"; + appKeyFile = "/run/keys/monica-appkey"; + database = { + createLocally = true; + }; + # Configure nginx properly for Monica + nginx = { + enableACME = false; # We'll use the main domain's certificate + forceSSL = true; # Force SSL + useACMEHost = rootDomain; # Use the main domain's certificate + }; + + # Configure email settings to use the local mail server + mail = { + driver = "smtp"; + host = "localhost"; + port = 25; # Standard SMTP port + fromName = "Monica CRM"; + from = "monica@simatime.com"; + encryption = null; # No encryption for local mail server + }; + }; + + # The Monica service will create its own nginx virtual host + # We've added monica.${rootDomain} to the ACME cert list in Web.nix +} -- cgit v1.2.3