Remove VM network bridge
All checks were successful
Lint / lint (push) Successful in 23s

This commit is contained in:
Gabriel Simmer 2023-10-27 14:55:23 +01:00
parent 595e52feb2
commit f6678914b6
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ

View file

@ -343,7 +343,7 @@
client_max_body_size 100M; client_max_body_size 100M;
''; '';
proxyPass = "http://192.168.50.187:3000/"; proxyPass = "http://192.168.122.185:3000/";
}; };
}; };
}; };
@ -450,22 +450,22 @@
trustedInterfaces = ["tailscale0" "virbr0"]; trustedInterfaces = ["tailscale0" "virbr0"];
checkReversePath = "loose"; checkReversePath = "loose";
enable = true; enable = true;
allowedTCPPorts = [ 22 53 80 443 2049 4328 5432 9100 22000 ]; allowedTCPPorts = [ 22 53 80 443 2049 4328 5432 9100 22000 5201 ];
allowedUDPPorts = [ 53 41641 22000 21027 ]; allowedUDPPorts = [ 53 41641 22000 21027 ];
}; };
useDHCP = false; # useDHCP = false;
bridges = { # bridges = {
"br0" = { # "br0" = {
interfaces = [ "eno1" ]; # interfaces = [ "eno1" ];
}; # };
}; # };
interfaces.br0.ipv4.addresses = [ # interfaces.br0.ipv4.addresses = [
{ # {
address = "192.168.50.229"; # address = "192.168.50.229";
prefixLength = 24; # prefixLength = 24;
} # }
]; # ];
defaultGateway = "192.168.50.1"; # defaultGateway = "192.168.50.1";
nameservers = ["45.90.28.116" "45.90.30.116"]; nameservers = ["45.90.28.116" "45.90.30.116"];
nftables.enable = true; nftables.enable = true;
}; };