🔄 FRP服务配置状态

✅ FRP管理面板配置成功

FRP管理面板已成功配置到子路径: https://cloud.beibay.cc/frps

🔐 登录信息

访问地址: https://cloud.beibay.cc/frps

用户名: admin

密码: qwer123789

Token: qwer123789 (用于客户端连接)

📊 服务状态

服务 状态 端口 访问方式
FRP服务器 运行中 7000 客户端连接端口
FRP管理面板 运行中 7500 /frps (通过Nginx代理)
Nginx Web服务器 运行中 80, 443 主网站 + FRP代理
Python后端 运行中 8080 通过Nginx代理访问

🔧 配置文件

FRP配置文件 (YAML格式):
bindAddr: "0.0.0.0"
bindPort: 7000

auth:
  method: token
  token: qwer123789

webServer:
  addr: "0.0.0.0"
  port: 7500
  user: admin
  password: qwer123789
Nginx代理配置:
location /frps {
  rewrite ^/frps$ / break;
  rewrite ^/frps/(.*) /$1 break;
  proxy_pass http://127.0.0.1:7500;
  proxy_redirect http://$host:7500/ https://$host/frps/;
  proxy_redirect / /frps/;
}

🧪 测试工具

🚀 客户端配置示例

FRP客户端配置 (frpc.ini):
[common]
server_addr = cloud.beibay.cc
server_port = 7000
token = qwer123789

[web]
type = tcp
local_ip = 127.0.0.1
local_port = 80
remote_port = 6000

⚠️ 注意事项

1. 外部访问: 确保云服务商安全组开放 443 端口

2. 证书: SSL证书已配置,有效期至 2026-05-01

3. 自动续期: acme.sh 已配置自动续期任务

4. 路径: FRP管理面板通过 /frps 子路径访问

5. 认证: 使用Basic认证,用户名/密码如上所示

所有配置已完成! FRP管理面板现在可以通过 https://cloud.beibay.cc/frps 安全访问。