diff options
author | Ben Sima <ben@bsima.me> | 2021-02-17 20:30:44 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-02-17 20:30:44 -0500 |
commit | c669819375378a5cebe298abc91a5aeeaf3684a5 (patch) | |
tree | 235471ccfd39f8dbe4eed2f65d22d78f144f6819 /Biz/Cloud/Web.nix | |
parent | dda25240553486522c953e7a1f43ae67dbe2f22a (diff) |
Add routes for dandel-rovbur and sabten
Diffstat (limited to 'Biz/Cloud/Web.nix')
-rw-r--r-- | Biz/Cloud/Web.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Biz/Cloud/Web.nix b/Biz/Cloud/Web.nix index 81f3cf0..6430c47 100644 --- a/Biz/Cloud/Web.nix +++ b/Biz/Cloud/Web.nix @@ -62,6 +62,18 @@ in useACMEHost = rootDomain; }; + "dandel-rovbur.${rootDomain}" = { + locations."/".proxyPass = "http://${bensIp}:8080"; + forceSSL = true; + useACMEHost = rootDomain; + }; + + "sabten.${rootDomain}" = { + locations."/".proxyPass = "http://localhost:8080"; + forceSSL = true; + useACMEHost = rootDomain; + }; + # Jupyter is currently disabled on Biz.Dev #"notebook.simatime.com".locations = { # "/" = { @@ -88,5 +100,7 @@ in "matrix.${rootDomain}" "chat.${rootDomain}" "hoogle.${rootDomain}" + "dandel-rovbur.${rootDomain}" + "sabten.${rootDomain}" ];# } |