mirror of
https://github.com/fatedier/frp.git
synced 2026-05-15 08:05:49 -06:00
[GH-ISSUE #4029] Dashboard使用官网文档的配置frps.toml方法无效,到底应该怎么配置? #3188
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#3188
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 @taony on GitHub (Feb 27, 2024).
Original GitHub issue: https://github.com/fatedier/frp/issues/4029
Bug Description
按照官网文档:https://gofrp.org/zh-cn/docs/features/common/ui/ ,配置frps.toml
frpc Version
V 0.54.0
frps Version
V 0.54.0
System Architecture
linux/amd64
Configurations
按照官网文档配置的不生效
但是使用 frps.ini 的配置参数可以生效:
请问到底应该怎么配置0.54.0的配置?
Logs
No response
Steps to reproduce
...
Affected area
@e282486518 commented on GitHub (Feb 28, 2024):
TOML格式语法: https://toml.io/cn/v1.0.0
frps.toml
[webServer]
port = 7500
user = "admin"
password = "admin"
或者
webServer = { port = 7500, user = "admin", password = "admin" }
@taony commented on GitHub (Feb 28, 2024):
使用这个配置:
启动后提示是成功的,但是网页上打开就是空白的。
@QinRay commented on GitHub (Feb 28, 2024):
这个就是成功了 dashboard监听在7005端口 浏览器输入ip:7005应该就能看到的
@Recopec commented on GitHub (Feb 28, 2024):
#3709
It could be fixed by adding webServer.addr = "0.0.0.0" to Configurations
@superzjg commented on GitHub (Feb 29, 2024):
你的日志很明显说明dashboard已经开启了 127.0.0.1:7005的监听,但是要知道127.0.0.1是本机地址,只有在本机才能访问。如果是远程访问,需要改地址配置:
webServer.addr@taony commented on GitHub (Feb 29, 2024):
综上,使用这个配置方式可以