diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-28 16:35:06 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-28 16:35:06 -0500 |
commit | 5610685e9fecafea23aa6c451a91c440ccbf76fb (patch) | |
tree | bf564bb35ce5c62e0e6f75ffd7868682b6ca7b18 /config | |
parent | 7a473c821129aaf506220164b49c541182278226 (diff) |
Dragon config fixes
Diffstat (limited to 'config')
-rw-r--r-- | config/web-server.nix | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/config/web-server.nix b/config/web-server.nix index 767d7f9..48f8f01 100644 --- a/config/web-server.nix +++ b/config/web-server.nix @@ -2,7 +2,6 @@ let aliases = import ../data/aliases.nix; keycloak_loc = aliases.services.keycloak; - bridge_loc = aliases.services.bridge; in { security.acme.acceptTerms = true; security.acme.defaults.email = "kj@orbekk.com"; @@ -43,7 +42,6 @@ in { forceSSL = true; }; in { - "tommvo.com" = template // { root = "/storage/srv/tommvo.com"; }; "orbekk.no" = template // { root = "/storage/srv/orbekk.com"; }; "orbekk.com" = template // { root = "/storage/srv/orbekk.com"; }; "wifi.orbekk.com" = template // { @@ -72,9 +70,6 @@ in { "auth.orbekk.com" = template // { locations."/".proxyPass = "http://localhost:${toString keycloak_loc.http-port}"; }; - "bridge.orbekk.com" = template // { - locations."/".proxyPass = "http://${bridge_loc.host}:${toString bridge_loc.port}"; - }; "git.orbekk.com" = template // { locations."/".proxyPass = "http://localhost:11103"; }; |