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/Mail.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/Mail.nix')
-rw-r--r-- | Omni/Cloud/Mail.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Omni/Cloud/Mail.nix b/Omni/Cloud/Mail.nix index d3f70bc..787c7cb 100644 --- a/Omni/Cloud/Mail.nix +++ b/Omni/Cloud/Mail.nix @@ -15,7 +15,7 @@ Known issues: }; fqdn = "simatime.com"; domains = ["simatime.com" "bsima.me"]; - certificateScheme = 3; # let's encrypt + certificateScheme = "acme-nginx"; # let's encrypt, using named scheme instead of number enableImap = true; enablePop3 = true; enableImapSsl = true; @@ -47,6 +47,10 @@ Known issues: aliases = ["nicolai@simatime.com"]; quota = "1G"; }; + "monica@simatime.com" = { + hashedPasswordFile = "/home/ben/hashed-mail-password"; + quota = "1G"; + }; }; }; } |