From 585a5ce6e50b3b8dc3f20f5c8417fedfc4290df0 Mon Sep 17 00:00:00 2001 From: Astro Date: Sun, 11 Dec 2022 02:48:14 +0100 Subject: [PATCH] caveman: add nginx vhost "relay.fedi.buzz" --- hosts/caveman/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/caveman/default.nix b/hosts/caveman/default.nix index 7d33a5d5..ea127a8c 100644 --- a/hosts/caveman/default.nix +++ b/hosts/caveman/default.nix @@ -54,6 +54,11 @@ ]; locations."/".proxyPass = "http://127.0.0.1:${toString config.services.caveman.gatherer.settings.listen_port}/"; }; + virtualHosts."relay.fedi.buzz" = { + forceSSL = true; + enableACME = true; + locations."/".proxyPass = "http://127.0.0.1:${toString 3000}/"; + }; }; }; }