Issue with Nginx Reverse Proxy -
we have nginx server running kibana on 80. have setup kibana our staging environments. if hit https://mykibana.mycompany.com/staging should hit staging kibana server listening on 80.
we tried sorts of configurations set reverse proxy, not working. https://mykibana.mycompany.com/staging returns "not found"
here config: upstream staging_hosts { server xx.yy.zz.ww; }
location @staging { proxy_pass http://staging_hosts; }
can me out?
Comments
Post a Comment