nixos-config/modules/system/services/server/mailserver/go-autoconfig/nginx/default.nix

12 lines
269 B
Nix
Raw Normal View History

2025-03-03 03:41:49 -05:00
{ config, lib, ... }:
{
services.nginx.virtualHosts."autoconfig.nixfox.ca" = lib.mkIf config.mailserver.enable {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:1323";
proxyWebsockets = true;
};
};
}