{ 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; }; services.nginx.virtualHosts."elk.tempest.dev" = { locations."/" = { proxyPass = "http://melete.tempest.local:5314"; }; forceSSL = true; enableACME = true; }; }