我想在Nginx后面运行datastax cassandra opscenter.但它不断向所有网址添加opscenter端口(默认为8888).是否有配置设置来禁用该等功能?
这是我的超级简单的Nginx配置:
server {
server_name opscenter.hostname.com;
location / {
proxy_pass http://127.0.0.1:8888;
}
}
有什么我可能做错了吗?
最佳答案
原文链接:https://www.f2er.com/nginx/435362.html