This commit is contained in:
AlexBa16
2026-06-01 16:47:01 +02:00
parent 025f92569f
commit 52711085d5
3 changed files with 92 additions and 3 deletions
+3 -3
View File
@@ -8,8 +8,8 @@ http {
sendfile on;
server_tokens off;
upstream backend_a_typo {
server backend-a:8080;
upstream backend_a {
server backend-a:80;
}
upstream backend_b {
@@ -33,7 +33,7 @@ http {
}
location /service/b {
proxy_pass http://backend_b;
proxy_pass http://backend_b/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto http;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;