李恒道 发表于 2023-3-28 17:24:12

frp配置客户端代理及子路径代理

服务端配置
```


bind_port = frp交流的端口
vhost_http_port = http显示的端口
token = 密钥
```
客户端配置
```

server_addr = 服务器地址
server_port = 服务器端口
token = 密钥


type = http为了代理http,声明类型
local_port = 本地的端口
custom_domains = 定义在服务器显示的地址,一般为ip,如果需要设置为域名则写域名,并将域名设置记录
locations = / 相对路径,如果要设置test下则写/test


同上
```
注意服务器必须打开对应的frp端口以及http端口
注意一定不能写//注释,否则会导致启动失败
运行使用frpc.exe -c ./frpc.ini注意ini文件必须带./
写一个bat点击即可自动运行
# linux下如何静默运行
使用nohup指令
# window下如何静默运行
写个vbs文件
点击启动如下
```
   Set ws = CreateObject("Wscript.Shell")
   ws.run "frpc.exe -c ./frpc.ini",vbhide
   MsgBox("the frp is run")
   Set ws=NoThing
   WScript.quit
```
点击关闭如下
```
   Set ws = CreateObject("Wscript.Shell")
   ws.Run "taskkill /f /im frpc.exe",0
   MsgBox("the frp is close")
   Set ws=NoThing
   WScript.quit
```
# 吐槽
搞个frp配一天....
页: [1]
查看完整版本: frp配置客户端代理及子路径代理