idk
This commit is contained in:
@@ -42,6 +42,26 @@ let
|
|||||||
# lighthouses = [
|
# lighthouses = [
|
||||||
# "10.1.1.1"
|
# "10.1.1.1"
|
||||||
# ];
|
# ];
|
||||||
|
settings = {
|
||||||
|
firewall = {
|
||||||
|
outbound = [
|
||||||
|
{
|
||||||
|
# Allow all outbound traffic from this node
|
||||||
|
port = "any";
|
||||||
|
proto = "any";
|
||||||
|
host = "any";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
inbound = [
|
||||||
|
{
|
||||||
|
# Allow all outbound traffic from this node
|
||||||
|
port = "any";
|
||||||
|
proto = "any";
|
||||||
|
host = "any";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -32,6 +32,31 @@ let
|
|||||||
lighthouses = [
|
lighthouses = [
|
||||||
"10.1.1.1"
|
"10.1.1.1"
|
||||||
];
|
];
|
||||||
|
staticHostMap = {
|
||||||
|
"10.1.1.1" = [
|
||||||
|
"mjallen.dev:4242"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
firewall = {
|
||||||
|
outbound = [
|
||||||
|
{
|
||||||
|
# Allow all outbound traffic from this node
|
||||||
|
port = "any";
|
||||||
|
proto = "any";
|
||||||
|
host = "any";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
inbound = [
|
||||||
|
{
|
||||||
|
# Allow all outbound traffic from this node
|
||||||
|
port = "any";
|
||||||
|
proto = "any";
|
||||||
|
host = "any";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user