forked from the-distro/infra
hydra: listen on 127.0.0.1 instead of localhost
For some cursed reasons, the latter doesn't work on build-coord: Aug 16 07:06:22 build-coord hydra-server[109560]: Resolved [localhost]:3000 to [::1]:3000, IPv6 Aug 16 07:06:22 build-coord hydra-server[109560]: Resolved [localhost]:3000 to [127.0.0.1]:3000, IPv4 Aug 16 07:06:22 build-coord hydra-server[109560]: Binding to TCP port 3000 on host ::1 with IPv6 Aug 16 07:06:22 build-coord hydra-server[109560]: Binding to TCP port 3000 on host 127.0.0.1 with IPv4 Aug 16 07:06:22 build-coord hydra-server[109560]: 2024/08/16-07:06:22 Can't connect to TCP port 3000 on 127.0.0.1 [Invalid argument]
This commit is contained in:
parent
5fdce0e2b5
commit
e2a990c982
|
@ -100,7 +100,7 @@ in {
|
||||||
services.hydra-dev = {
|
services.hydra-dev = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
listenHost = "localhost";
|
listenHost = "127.0.0.1";
|
||||||
port = port;
|
port = port;
|
||||||
|
|
||||||
dbi = "dbi:Pg:${mkPgConnString {
|
dbi = "dbi:Pg:${mkPgConnString {
|
||||||
|
|
Loading…
Reference in a new issue