[ISSUE #9004] docs: add nginx load balancing guide for Nacos cluster#15213
[ISSUE #9004] docs: add nginx load balancing guide for Nacos cluster#15213EvanYao826 wants to merge 1 commit into
Conversation
|
Thanks for your this PR. 🙏 感谢您提交的PR。 🙏 |
|
| Commit | Author | |
|---|---|---|
f750b9b |
EvanYao826 | evanyao826@gmail.com |
How to fix:
- Add your commit email to your GitHub account: https://github.com/settings/emails
- Or update your local git config to use an email already linked to GitHub:
git config user.name "Your GitHub Username" git config user.email "your-github-email@example.com" - Amend your commits and force-push:
git rebase -i HEAD~1 # mark commits as "edit" and amend author git push --force-with-lease
This check will re-run automatically after you push.
|
I have read the CLA Document and I hereby sign the CLA |
f750b9b to
dcbcafb
Compare
|
please add document into nacos-group/nacos-group.github.io |
|
Got it, I will add the documentation to nacos-group/nacos-group.github.io and update this PR accordingly. Will follow up shortly. |
|
I have added the documentation to nacos-group/nacos-group.github.io: nacos-group/nacos-group.github.io#1082 The guide is added under |
Thanks, I will review in that PR. |
|
@EvanYao826 I reviewed with some comment in document PR. |
Add documentation for using Nginx as a load balancer for a Nacos cluster, covering both HTTP (8848) and gRPC (9848) protocols. Closes alibaba/nacos#9004 Related: alibaba/nacos#15213 Assisted-by: Hermes Agent
…luster Add comprehensive guide for using Nginx as a load balancer with Nacos clusters. Covers HTTP and gRPC (stream) proxying, port mapping, and troubleshooting. Assisted-by: Hermes Agent
dcbcafb to
6676445
Compare
|
Closing this PR as the documentation has been moved to nacos-group/nacos-group.github.io#1082 per @KomachiSion's request. The guide is now maintained in the documentation repository under |
What does this PR do?
Closes #9004: Add official documentation for using Nginx as a load balancer for a Nacos cluster.
Problem
Many users need to use Nginx to load balance a Nacos cluster, but there was no official guide. Online tutorials are often incomplete — most miss the critical
streamblock for gRPC proxying, causing client connection failures.Changes
Added
doc/nginx-cluster-load-balance-guide.mdcovering:The guide is based on the solution shared in the issue comments by the original reporter, enhanced with best practices and additional context.
Assisted-by: Hermes Agent