mirror of
https://github.com/woodchen-ink/proxy-go.git
synced 2025-07-19 08:51:55 +08:00
21 lines
302 B
Markdown
21 lines
302 B
Markdown
# Proxy-Go
|
|
|
|
A simple reverse proxy server written in Go.
|
|
|
|
使用方法: https://q58.org/t/topic/165?u=wood
|
|
|
|
## Configuration
|
|
|
|
Create a `config.json` file in the `data` directory:
|
|
|
|
```json
|
|
{
|
|
"MAP":{
|
|
"/path1": "https://path1.com/path/path/path",
|
|
"/path2": "https://path2.com"
|
|
}
|
|
}
|
|
```
|
|
|
|
|