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