赞
踩
docker pull snowdreamtech/frps
配置文件内容如下:
- [common]
- bind_port = 50000
- vhost_http_port = 50001
bind_port:服务端和客户端通讯端口
vhost_http_port:网站访问的端口,例如:http://xxx.com:50001
docker run --restart=always --network host -d -v /etc/frp/frps.ini:/etc/frp/frps.ini --name frps snowdreamtech/frps
注:必须指定 --network 为 host参数
如果不指定为host,就需要命令 -p 指定端口映射:
- docker run -d \
- --restart=always \
- -p 50000:50000\
- -p 50001:50001\
- -v /etc/frp/frps.ini:/etc/frp/frps.ini \
- --name frps\
- snowdreamtech/frps
docker pull snowdreamtech/frpc
- [common]
- server_addr = xx.xx.xx
- server_port = 50000
-
- [web]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。