Closed bronson closed 8 years ago
here's an example from my server's config:
"port_map": {
"udp": [53],
"tcp": [53, 25, 587, 993, 80, 443]
}
vs
"port_map": {
"udp": [[53, 53]],
"tcp": [[53, 53],
[25, 25],
[587, 587],
[993, 993],
[80, 80],
[443, 443]]
}
Nice one
Tested both syntaxes on my server, everything seems to work.