背景
我将apache kafka UI部署到Linux服务器上了,然后我不能直接链接到服务器IP和端口。需要nginx做代理。
我这里假设apache kafka UI已经能够正常连接kafka了。
步骤
在apache kafka UI所在的服务器上面设置环境变量
[root@kafka1 apache kafka UI]# export SERVER_SERVLET_CONTEXT_PATH=/kafka
这个环境变量是用来改变默认的根路径的,否则NGINX代理不了,会出现404错误。
然后在NGINX上配置:
location /kafka/ { proxy_pass http://192.168.25.31:9100/kafka/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; }
然后重新加载NGINX就欧克了。
标签:set,header,kafka,Nginx,UI,proxy,apache From: https://www.cnblogs.com/love-DanDan/p/18431878