(本文档仅供参考)
问题
因为需要通过Nginx进行代理转发,在Nginx配置文件中的如下,现在的问题是,通过Nginx转发可以访问到smartbi的登录页面,但是输入用户名和密码没有反映,进不了smartbi看不到资源,请问是什么问题呢?
代码块 | ||
---|---|---|
| ||
location /oa/test { proxy_pass http://192.168.1.10:8080/smartbi/vision/ ; proxy_connect_timeout 600s; proxy_send_timeout 600s; proxy_read_timeout 600s; } |
解决方案
基于问题中的Nginx配置,此Nginx参数配置目前有三个问题:
...