From b3aa8d94cb07ac4ec19d2a8359ed01275f61def9 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Thu, 18 Feb 2021 00:18:01 +0000 Subject: [PATCH] services: gitea: change default port 3000 interferes with the Drone runners, which leads to a race condition at startup regarding who gets the port. --- services/gitea.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/gitea.nix b/services/gitea.nix index 3a7109b..b5c1d82 100644 --- a/services/gitea.nix +++ b/services/gitea.nix @@ -10,7 +10,7 @@ in enable = mkEnableOption "Gitea"; port = mkOption { type = types.port; - default = 3000; + default = 3042; example = 8080; description = "Internal port"; };