gitea: listen on 3001

compress-drv-tests
Motiejus Jakštys 2023-08-25 09:41:42 +03:00
parent 1b6c35ed76
commit 9740b42493
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ rec {
ports = {
grafana = 3000;
gitea = 3001;
prometheus = 9001;
exporters = {
node = 9002;

View File

@ -45,7 +45,7 @@
LANDING_PAGE = "/motiejus";
ROOT_URL = "https://git.jakstys.lt";
HTTP_ADDR = "127.0.0.1";
HTTP_PORT = 3000;
HTTP_PORT = myData.ports.gitea;
DOMAIN = "git.jakstys.lt";
};
service = {
@ -74,7 +74,7 @@
caddy = {
virtualHosts."git.jakstys.lt".extraConfig = ''
reverse_proxy 127.0.0.1:3000
reverse_proxy 127.0.0.1:${toString myData.ports.gitea}
'';
};
};