FRP配置部署

来源:互联网 发布:淘宝旗袍模特周婷资料 编辑:程序博客网 时间:2024/04/30 13:21

作者github地址:https://github.com/fatedier/frp

我的配置文件基于0.93

frps.ini

# [common] is integral section[common]# A literal address or host name for IPv6 must be enclosed# in square brackets, as in "[::1]:80", "[ipv6-host]:http" or "[ipv6-host%zone]:80"bind_addr = 0.0.0.0# 绑定服务器端口,会被占用bind_port = 8089# if you want to support virtual host, you must set the http port for listening (optional)vhost_http_port = 80vhost_https_port = 433# if you want to configure or reload frps by dashboard, dashboard_port must be set# 仪表盘显示地址dashboard_port = 7000# dashboard assets directory(only for debug mode)# assets_dir = ./static# console or real logFile path like ./frps.loglog_file = ./frps.log# debug, info, warn, errorlog_level = infolog_max_days = 3# if you enable privilege mode, frpc can create a proxy without pre-configure in frps when privilege_token is correctprivilege_mode = trueprivilege_token = 12345678# only allow frpc to bind ports you list, if you set nothing, there won't be any limitprivilege_allow_ports = 2000-3000,3001,3003,4000-50000,78,79# pool_count in each proxy will change to max_pool_count if they exceed the maximum valuemax_pool_count = 100# ssh is the proxy name, client will use this name and auth_token to connect to server[ssh]type = tcpauth_token = 123bind_addr = 0.0.0.0listen_port = 6000[web01]# if type equals http, vhost_http_port must be settype = httpauth_token = 123# if proxy type equals http, custom_domains must be set separated by commas#custom_domains = web01.yourdomain.com,web01.yourdomain2.comcustom_domains = 127.0.0.1[web02]# if type equals https, vhost_https_port must be settype = httpsauth_token = 123custom_domains = web02.yourdomain.com

frpc.ini

[common] server_addr = 服务器ip地址 privilege_token = 12345678 server_port = 8089 log_file = frpc.log log_level = info log_max_days = 7 [tcp_29168] type = tcp remote_port = 29168 local_ip = 192.168.1.104 local_port = 8080 privilege_mode = true authentication_timeout = 0 use_encryption = true use_gzip = true 

写在最后,frp用了很久了,非常好用,作者在一直更新,相信作者会更好!

tips:在需要用到服务器时,不需要频繁在服务器上搭建项目,本地通过反向代理,即可在手机端展示.
尤其是微信小程序!