Hi,
I am working with the Cloud Edition and want to use Nginx to create specific perspective URLs for each of our clients. However, when using the proxy at https://server_name/Client1/
, I receive a message saying, "No view configured for this page", but when I paste the proxy_pass URL (https://localhost:8043/data/perspective/client/Client1/
), everything works fine. I'm not sure if this is an issue with the reverse proxy configuration or if Perspective retrieves the URL directly from the browser instead of through the proxy_pass. I would appreciate if you can help me.
My location nginx.conf file is as follows;
location /Client1/ {
proxy_pass https://localhost:8043/data/perspective/client/Client1/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_pass_request_headers on;
proxy_cache_bypass $http_upgrade;
}
Thanks