From bd8b8094865b44345a46941a9947e8ce2f38d303 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 7 Feb 2021 21:02:11 +0100 Subject: [PATCH] vueko: Add bang-evaluator --- machines/vueko/configuration.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/machines/vueko/configuration.nix b/machines/vueko/configuration.nix index d412006..d599500 100644 --- a/machines/vueko/configuration.nix +++ b/machines/vueko/configuration.nix @@ -61,6 +61,11 @@ in enableACME = true; forceSSL = true; }; + "bangs.sbruder.de" = { + enableACME = true; + forceSSL = true; + locations."/".proxyPass = "http://localhost:8000"; + }; }; }; @@ -101,4 +106,9 @@ in username = "[-_a-zäöüß]+|SuperUser"; }; }; + + services.bang-evaluator = { + enable = true; + listenAddress = ":8000"; + }; }