You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
393 B
Nix

{ config, pkgs, ...}: {
services.nginx.virtualHosts."phantomthieves.net" = {
locations."/" = { proxyPass = "http://necronomicon.tempest.local:4000"; };
forceSSL = true;
enableACME = true;
};
services.nginx.virtualHosts."forum.phantomthieves.net" = {
locations."/" = { proxyPass = "http://melete.tempest.local:8999"; };
forceSSL = true;
enableACME = true;
};
}