-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refine rest-server.property documentation #368
Conversation
# http://0.0.0.0:8080 to listen all network interfaces, but need to take care of security | ||
# or listen to specific IP with port |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same with server
@@ -170,7 +172,7 @@ server.id=server-1 | |||
server.role=master | |||
``` | |||
|
|||
- restserver.url:RestServer 提供服务的 url,根据实际环境修改; | |||
- restserver.url:RestServer 提供服务的 url,根据实际环境修改。如果其他 IP 地址无法访问,可以尝试修改为特定的地址;或修改为 `http://0.0.0.0:8080` 来监听来自任何 IP 地址的请求,这种方案较为便捷,但安全性有所缺失; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
无需携带端口, 或者 http/https, 只和 ip 有关
另外"安全性有所缺失" -> "需要留意服务可被访问的网络范围"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sync with CN version (could also update in hubble's doc?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The default bind for hubble's config is 0.0.0.0, so I think user wouldn't meet this problem about accessing, mean while developers do not need to limit the accessibility of hubble.
So I think hubble does not need extra explanation.
Purpose of the PR
refine rest-server.property documentation
related to apache/incubator-hugegraph#2610