如何在nginx后面运行datastax opscenter

前端之家收集整理的这篇文章主要介绍了如何在nginx后面运行datastax opscenter前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在Nginx后面运行datastax cassandra opscenter.但它不断向所有网址添加opscenter端口(默认为8888).是否有配置设置来禁用该等功能

这是我的超级简单的Nginx配置:

server {
  server_name opscenter.hostname.com;

  location / {
    proxy_pass http://127.0.0.1:8888;
  }
}

有什么我可能做错了吗?

最佳答案
通过将Nginx重定向添加到/ opscenter解决了这个问题

location = / {
  rewrite (.*) /opscenter;
}
原文链接:https://www.f2er.com/nginx/435362.html

猜你在找的Nginx相关文章