services: gitea: change default port

3000 interferes with the Drone runners, which leads to a race condition
at startup regarding who gets the port.
This commit is contained in:
Bruno BELANYI 2021-02-18 00:18:01 +00:00
parent 53b0e0a1c8
commit b3aa8d94cb

View file

@ -10,7 +10,7 @@ in
enable = mkEnableOption "Gitea";
port = mkOption {
type = types.port;
default = 3000;
default = 3042;
example = 8080;
description = "Internal port";
};