add xkcd-pw

This commit is contained in:
stubbfel
2025-06-15 20:49:22 +02:00
parent f08ff9e904
commit e96b7016bf
3 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
services.nginx.virtualHosts."xkcd-pw.stubbe.rocks" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:8080";
};
}