mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-29 20:24:11 +08:00
a33e4b5426
* caddyfile: support vars and vars_regexp matchers in the caddyfile * caddyfile: matchers: Brian Kernighan said printf is good debugging tool but didn't say keep them around
136 lines
2.3 KiB
Plaintext
136 lines
2.3 KiB
Plaintext
:80 {
|
|
@matcher {
|
|
method GET
|
|
}
|
|
respond @matcher "get"
|
|
|
|
@matcher2 method POST
|
|
respond @matcher2 "post"
|
|
|
|
@matcher3 not method PUT
|
|
respond @matcher3 "not put"
|
|
|
|
@matcher4 vars "{http.request.uri}" "/vars-matcher"
|
|
respond @matcher4 "from vars matcher"
|
|
|
|
@matcher5 vars_regexp static "{http.request.uri}" `\.([a-f0-9]{6})\.(css|js)$`
|
|
respond @matcher5 "from vars_regexp matcher with name"
|
|
|
|
@matcher6 vars_regexp "{http.request.uri}" `\.([a-f0-9]{6})\.(css|js)$`
|
|
respond @matcher6 "from vars_regexp matcher without name"
|
|
}
|
|
----------
|
|
{
|
|
"apps": {
|
|
"http": {
|
|
"servers": {
|
|
"srv0": {
|
|
"listen": [
|
|
":80"
|
|
],
|
|
"routes": [
|
|
{
|
|
"match": [
|
|
{
|
|
"method": [
|
|
"GET"
|
|
]
|
|
}
|
|
],
|
|
"handle": [
|
|
{
|
|
"body": "get",
|
|
"handler": "static_response"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"method": [
|
|
"POST"
|
|
]
|
|
}
|
|
],
|
|
"handle": [
|
|
{
|
|
"body": "post",
|
|
"handler": "static_response"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"not": [
|
|
{
|
|
"method": [
|
|
"PUT"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"handle": [
|
|
{
|
|
"body": "not put",
|
|
"handler": "static_response"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"vars": {
|
|
"{http.request.uri}": "/vars-matcher"
|
|
}
|
|
}
|
|
],
|
|
"handle": [
|
|
{
|
|
"body": "from vars matcher",
|
|
"handler": "static_response"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"vars_regexp": {
|
|
"{http.request.uri}": {
|
|
"name": "static",
|
|
"pattern": "\\.([a-f0-9]{6})\\.(css|js)$"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"handle": [
|
|
{
|
|
"body": "from vars_regexp matcher with name",
|
|
"handler": "static_response"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"match": [
|
|
{
|
|
"vars_regexp": {
|
|
"{http.request.uri}": {
|
|
"pattern": "\\.([a-f0-9]{6})\\.(css|js)$"
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"handle": [
|
|
{
|
|
"body": "from vars_regexp matcher without name",
|
|
"handler": "static_response"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |