allow promethus onto the wg0 interface
This commit is contained in:
parent
af0395badd
commit
808ce0fefc
|
@ -83,7 +83,20 @@
|
||||||
|
|
||||||
firewall = {
|
firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
allowedTCPPorts = [ 80 443 ];
|
interfaces = {
|
||||||
|
eth0 = {
|
||||||
|
allowedTCPPorts = [ 80 443 ];
|
||||||
|
};
|
||||||
|
wg0 = {
|
||||||
|
# allow everything bound to the wg0 interface
|
||||||
|
allowedTCPPortRanges = [
|
||||||
|
{ from = 1; to = 35565; }
|
||||||
|
];
|
||||||
|
allowedUDPPortRanges = [
|
||||||
|
{ from = 1; to = 35565; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue