fix: map Nginx 8281 to host 8080 to restore Apache proxy connection
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 7m53s
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 7m53s
This commit is contained in:
@@ -6,18 +6,10 @@ upstream tool-sms {
|
||||
server tool-sms-blue:8082;
|
||||
}
|
||||
|
||||
upstream tool-email {
|
||||
server tool-email-blue:8083;
|
||||
}
|
||||
|
||||
upstream tool-other {
|
||||
server tool-other-blue:8084;
|
||||
}
|
||||
|
||||
upstream tool-payment {
|
||||
server tool-payment-blue:8085;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8281;
|
||||
location / {
|
||||
@@ -36,15 +28,6 @@ server {
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8283;
|
||||
location / {
|
||||
proxy_pass http://tool-email;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8284;
|
||||
location / {
|
||||
@@ -54,11 +37,3 @@ server {
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8285;
|
||||
location / {
|
||||
proxy_pass http://tool-payment;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user