目前,infra 已将 NGINX 用作带有 ELB(经典负载平衡)的反向代理。我会知道 AWS ALB 是否可以实现类似的反向代理功能。例如 NGINX 中的以下内容:
location /v1/ {
proxy_pass http://tomcat/serviceA/v1/;
proxy_next_upstream error timeout invalid_header http_500 http_502
http_503 http_504;
proxy_redirect off;
proxy_buffering off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
看起来 ALB 可以支持 http 重定向但只支持 GET 方法。POST可以吗?