diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-28 15:59:32 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-28 15:59:32 +0200 |
commit | a7024544dc072e4fa568e9230100e2ba38862c70 (patch) | |
tree | d26652098d1d8d331b9b49512b48193cde6ae8ca /hosts/by-name/server2 | |
parent | pkgs/sharkey: 2025.2.2 -> 2025.2.3 (diff) | |
download | nixos-server-a7024544dc072e4fa568e9230100e2ba38862c70.zip |
I realized, that the new taskchampion-sync-server uses a http api (instead of the custom protocol of taskserver). As such, we obviously want to put it behind a ngnix reverse proxy.
Diffstat (limited to '')
-rw-r--r-- | hosts/by-name/server2/configuration.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hosts/by-name/server2/configuration.nix b/hosts/by-name/server2/configuration.nix index 24513f4..f7a5d2d 100644 --- a/hosts/by-name/server2/configuration.nix +++ b/hosts/by-name/server2/configuration.nix @@ -103,7 +103,10 @@ CheckActivityPubGetSigned = false; }; }; - taskchampion-sync.enable = true; + taskchampion-sync = { + enable = true; + fqdn = "taskchampion.vhack.eu"; + }; users.enable = true; }; |