https://github.com/nokitjs/nokit-filter-proxy
https://github.com/nokitjs/nokit-filter-proxy
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nokitjs/nokit-filter-proxy
- Owner: nokitjs
- Created: 2016-02-22T12:11:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-10-11T02:01:15.000Z (over 5 years ago)
- Last Synced: 2025-05-02T20:47:47.829Z (about 2 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
}
}
```