[zh] Resync connecting-frontend-backend

This commit is contained in:
Qiming Teng
2021-01-30 12:32:43 +08:00
parent 9ade714aab
commit 15be3b1c7b
8 changed files with 152 additions and 114 deletions
@@ -0,0 +1,14 @@
# The identifier Backend is internal to nginx, and used to name this specific upstream
upstream Backend {
# hello is the internal DNS name used by the backend Service inside Kubernetes
server hello;
}
server {
listen 80;
location / {
# The following statement will proxy traffic to the upstream named Backend
proxy_pass http://Backend;
}
}