From 20fbfaa34f2d725ca6e0cd2b9f513b5638fd33a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Thu, 16 Nov 2023 11:17:50 +0100 Subject: [PATCH] drone: fix listen port --- hosts/drone/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/drone/default.nix b/hosts/drone/default.nix index 14e8137a..40e94575 100644 --- a/hosts/drone/default.nix +++ b/hosts/drone/default.nix @@ -17,7 +17,7 @@ in forceSSL = true; enableACME = true; listen = libC.defaultListen; - locations."/".proxyPass = "http://localhost:8080"; + locations."/".proxyPass = "http://localhost:5000"; }; }; @@ -72,6 +72,7 @@ in "DRONE_DATADOG_ENDPOINT=null" "DRONE_GITEA_SERVER=https://gitea.c3d2.de" "DRONE_SERVER_HOST=${hostname}" + "DRONE_SERVER_PORT=:5000" "DRONE_SERVER_PROTO=https" "DRONE_USER_CREATE=username:sandro,admin:true" "DRONE_USER_FILTER=sandro,c3d2"