Change gitea and adguard ports (prep to add grafana)

This commit is contained in:
Evie Litherland-Smith 2023-10-27 05:56:55 +01:00
parent 13c44b60ac
commit aa0afdbb42
4 changed files with 5 additions and 3 deletions

View file

@ -6,7 +6,7 @@
enable = true;
mutableSettings = false;
settings = rec {
http.address = "0.0.0.0:3001";
http.address = "0.0.0.0:3200";
dns = {
bind_hosts = [ "127.0.0.1" "192.168.1.230" ];
bootstrap_dns = [ "9.9.9.9" "149.112.112.10" ];

View file

@ -8,6 +8,8 @@
server = {
ROOT_URL = "https://git.xenia.me.uk";
DOMAIN = "git.xenia.me.uk";
HTTP_ADDR = "127.0.0.1";
HTTP_PORT = 3100;
DISABLE_SSH = true;
};
service.DISABLE_REGISTRATION = true;

View file

@ -11,6 +11,6 @@
tls = { certResolver = "default"; };
};
services.adguard-webinterface.loadBalancer.servers =
[{ url = "http://localhost:3001"; }];
[{ url = "http://localhost:3200"; }];
};
}

View file

@ -11,7 +11,7 @@
tls = { certResolver = "default"; };
};
services.gitea-websecure.loadBalancer.servers =
[{ url = "http://localhost:3000"; }];
[{ url = "http://localhost:3100"; }];
};
};
}