NixOS-Config/modules/system/services/server/mailserver/simplenix/nginx/default.nix

12 lines
242 B
Nix
Raw Normal View History

{ pkgs, config, ... }:
2024-10-09 03:36:08 -04:00
{
services.nginx.virtualHosts."mx.${config.domains.jim1}" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:1390";
proxyWebsockets = true;
};
};
}