From 47cd029db307d281d66188c62238a91f69170fcd Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Wed, 4 Jan 2023 17:36:15 -0500 Subject: Deploy nostr relay service --- Biz/Cloud/Web.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'Biz/Cloud/Web.nix') diff --git a/Biz/Cloud/Web.nix b/Biz/Cloud/Web.nix index 5f4789a..069062e 100644 --- a/Biz/Cloud/Web.nix +++ b/Biz/Cloud/Web.nix @@ -201,6 +201,20 @@ in locations."/".proxyPass = "http://localhost:${toString ports.botamusique}"; }; + "nostr.${rootDomain}" = { + forceSSL = true; + useACMEHost = rootDomain; + locations."/" = { + proxyPass = "http://localhost:${toString ports.nostr-relay}"; + extraConfig = '' + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $host; + ''; + }; + }; + "notebook.${rootDomain}" = { forceSSL = true; useACMEHost = rootDomain; @@ -239,6 +253,7 @@ in "sabten" "cal" "notebook" + "nostr" "reddit" "old.reddit" "www.reddit" -- cgit v1.2.3