mirror of
https://github.com/juanfont/headscale.git
synced 2026-07-17 16:36:02 +00:00
Fix invalid ip syntax
The "ip" field needs to be a list.
This commit is contained in:
parent
33a65052c9
commit
a066a06bef
1 changed files with 3 additions and 3 deletions
|
|
@ -158,17 +158,17 @@ devices. Can only be used in policy destinations.
|
||||||
{
|
{
|
||||||
"src": ["boss@"],
|
"src": ["boss@"],
|
||||||
"dst": ["boss@"],
|
"dst": ["boss@"],
|
||||||
"ip": "*"
|
"ip": ["*"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": ["dev1@"],
|
"src": ["dev1@"],
|
||||||
"dst": ["dev1@"],
|
"dst": ["dev1@"],
|
||||||
"ip": "*"
|
"ip": ["*"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"src": ["intern1@"],
|
"src": ["intern1@"],
|
||||||
"dst": ["intern1@"],
|
"dst": ["intern1@"],
|
||||||
"ip": "*"
|
"ip": ["*"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue