handle / handle_path 类似nginx 的location
最后更新于:2022-04-02 02:56:00
[TOC]
## handle
- 类似nginx 的location
语法
```
handle [] {
}
```
### 实例
```
handle /foo/* {
file_server
}
handle {
reverse_proxy 127.0.0.1:8080
}
```
## handle_path
- 与handle指令相同,但会隐式删除匹配的路径前缀
语法
```
handle_path {
}
```
### 实例
```
handle_path /prefix/* {
...
}
// 等效于
handle /prefix/* {
uri strip_prefix /prefix
...
}
```
';