diff options
author | sefidel <contact@sefidel.net> | 2024-08-02 02:03:11 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-08-02 02:03:11 +0900 |
commit | a09f6547f6036bca4e2101f4988c4cb13689141d (patch) | |
tree | 0061ebc908f00cafa87122bf867bd6a0ca16e8a4 | |
parent | 740f37619f6a15ce890a570cf1a7b94334b92274 (diff) | |
download | nixrc-a09f6547f6036bca4e2101f4988c4cb13689141d.tar.gz nixrc-a09f6547f6036bca4e2101f4988c4cb13689141d.zip |
feat(nixos/kanata)!: disable changedetection.io
-rw-r--r-- | nixos/kanata/configuration.nix | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/nixos/kanata/configuration.nix b/nixos/kanata/configuration.nix index a5ed1be..e1627fb 100644 --- a/nixos/kanata/configuration.nix +++ b/nixos/kanata/configuration.nix @@ -285,29 +285,6 @@ in }; }; - services.changedetection-io = { - enable = true; - - listenAddress = "localhost"; - port = 4901; - - baseURL = "https://change.labs.kusanari.network"; - behindProxy = true; - webDriverSupport = true; - }; - - services.nginx.virtualHosts."change.labs.kusanari.network".locations."/" = { - proxyWebsockets = true; - extraConfig = '' - proxy_redirect off; - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header X-Forwarded-Proto $scheme; - proxy_set_header Referer "https://change.labs.kusanari.network"; - ''; - }; - containers.v-interlink = { autoStart = true; enableTun = true; |