Files
router/app.json
T

24 lines
490 B
JSON
Raw Normal View History

2024-07-15 13:05:25 +03:00
{
"app1": {
"route": {
"operator": "and",
"rules": [
{
"key": "url.host",
"operator": "regex",
"value": ".*"
},
{
"key": "url.path",
"operator": "regex",
"value": "\/"
}
]
},
"function": {
"operator": "const",
"value": "OK"
}
}
}