一 背景需求描述
1.1 需求描述
es的访问地址:http://localhost:9200/_plugin/head/

现在不想把9200端口暴露出去,改用80端口,现在使用nginx进行反向代理操作。
1.2 操作一
1.nginx的配置
location /es {
proxy_pass http://localhost:9200/;
#root html;
#index index.html index.htm;
}
2.访问:http://localhost/es/_plugin/head/

无法进行访问,原因在于:被nginx代理成的地址为:http://localhost:9200//

本文介绍如何通过Nginx正确配置反向代理,使Elasticsearch (ES) 的9200端口可以通过80端口访问,并解决因路径配置错误导致的访问问题。
最低0.47元/天 解锁文章
606

被折叠的 条评论
为什么被折叠?



