Add botPolicy.json
This commit is contained in:
parent
02c25ac2c9
commit
7be5fa07b1
1 changed files with 29 additions and 0 deletions
29
botPolicy.json
Normal file
29
botPolicy.json
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"bots": [
|
||||
{
|
||||
"name": "well-known",
|
||||
"path_regex": "^/.well-known/.*$",
|
||||
"action": "ALLOW"
|
||||
},
|
||||
{
|
||||
"name": "favicon",
|
||||
"path_regex": "^/favicon.ico$",
|
||||
"action": "ALLOW"
|
||||
},
|
||||
{
|
||||
"name": "robots-txt",
|
||||
"path_regex": "^/robots.txt$",
|
||||
"action": "ALLOW"
|
||||
},
|
||||
{
|
||||
"name": "stats",
|
||||
"path_regex": "^/api/v1/stats$",
|
||||
"action": "ALLOW"
|
||||
},
|
||||
{
|
||||
"name": "generic-browser",
|
||||
"path_regex": ".*",
|
||||
"action": "CHALLENGE"
|
||||
}
|
||||
]
|
||||
}
|
Reference in a new issue