增加基础正向代理实现

This commit is contained in:
2021-08-06 16:02:59 +08:00
parent f1fac196f7
commit 6baa3bc05e
2 changed files with 86 additions and 0 deletions

20
proxy/config.go Normal file
View File

@ -0,0 +1,20 @@
// Package proxy ...
//
// Description : 代理转发的配置
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2021-08-06 3:34 下午
package proxy
// Server 服务器配置
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 3:34 下午 2021/8/6
type Server struct {
Scheme string // 转发scheme
Host string // 服务器地址
URI string // 转发接口
RewriteHeader map[string]string // 重写header
}