mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
[GH-ISSUE #4138] 请求超过60秒立刻超时报错 #3267
Labels
No labels
In Progress
WIP
WaitingForInfo
bug
doc
duplicate
easy
enhancement
future
help wanted
invalid
lifecycle/stale
need-issue-template
need-usage-help
no plan
proposal
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/frp#3267
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @maxin9966 on GitHub (Apr 9, 2024).
Original GitHub issue: https://github.com/fatedier/frp/issues/4138
Bug Description
请求超过60秒返回以下数据,版本0.4.x,查看文档后,尝试设置vhostHTTPTimeout = 100000后依然不行,还是60秒报错:
<html> <head> </head>The page you requested was not found.
Sorry, the page you are looking for is currently unavailable.
Please try again later.
The server is powered by frp.
Faithfully yours, frp.
</html>frpc Version
0.49.0
frps Version
不确定版本?cat docker-compose.yml version: '3.3' services: frps: restart: always network_mode: host volumes: - './frps.ini:/etc/frp/frps.ini' container_name: frps image: snowdreamtech/frps
System Architecture
linux/amd64
Configurations
[root@hklite2 frp]# cat frps.ini
[common]
#frp 监听端口,与客户端绑定端口
bind_port= 5443
kcp_bind_port = 5443
vhost_http_port = 7860
vhost_ssh_port = 7991
vhostHTTPTimeout = 600000
userConnTimeout = 600000
#dashboard用户名
dashboard_user= admin
#dashboard密码
dashboard_pwd= xxxxxx
#dashboard端口,启动成功后可通过浏览器访问如http://ip:9527
dashboard_port= 9527
#设置客户端token,对应客户端有页需要配置一定要记住,如果客户端不填写你连不上服务端
token = xxxxxxx
Logs
No response
Steps to reproduce
...
Affected area
@maxin9966 commented on GitHub (Apr 9, 2024):
frps Jul 6 2023 docker-compose.yml
[root@hklite2 frp]# cat docker-compose.yml
version: '3.3'
services:
frps:
restart: always
network_mode: host
volumes:
- './frps.ini:/etc/frp/frps.ini'
container_name: frps
image: snowdreamtech/frps
去年年中7月6号的版本,应该是0.4x.x
@fatedier commented on GitHub (Apr 9, 2024):
请完全按照官方文档来进行配置,不要混用 INI 和 TOML 格式的配置参数写法。