An open API service indexing awesome lists of open source software.

https://github.com/nokitjs/nokit-filter-proxy


https://github.com/nokitjs/nokit-filter-proxy

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

示例一:

```json
{
"filters": {
"^/": "nokit-filter-proxy"
},
"proxy": {
"rules": {
"^/jser": "https://jser.cc"
}
}
}
```

示例二:

不保留 URL 中的 /jser 前缀
```json
{
"filters": {
"^/": "nokit-filter-proxy"
},
"proxy": {
"rules": {
"^/jser(.*)": "https://jser.cc"
}
}
}
```