diff options
author | Ben Sima <ben@bsima.me> | 2025-03-04 09:50:47 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-03-18 08:54:17 -0400 |
commit | a41a3da7ce8d548f837c70d924e496eabec37496 (patch) | |
tree | b1bd74377d538e76d357a1b8d263a1289204ae4a /Omni/Cloud/Monica.nix | |
parent | e96bb4f778817c18b7a4488cd46fffd1b4e9544f (diff) |
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.
Diffstat (limited to 'Omni/Cloud/Monica.nix')
-rw-r--r-- | Omni/Cloud/Monica.nix | 31 |
1 files changed, 31 insertions, 0 deletions
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 +} |