Files
stubbfelnix/services/xkcd-password.nix
2025-06-15 20:49:22 +02:00

12 lines
202 B
Nix

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