-
1. Re: Tableau Server reverse proxy port issue
Patrick A Van Der HydeDec 19, 2016 4:29 PM (in response to Samantha Gunasekara)
Hello Samantha Gunasekara,
Did you find a solution with support? I moved this thread to Server Administration. I'd love to hear the solution if you can share.
Patrick
-
2. Re: Tableau Server reverse proxy port issue
Jeff StraussDec 19, 2016 5:14 PM (in response to Samantha Gunasekara)
Patrick, thanks for moving this here. Now I see it
In any case, we have a setup that sounds similar to this scenario. External traffic is encrypted using port 443, but then terminates at the first firewall via the load balancer. And then after this, it uses port 80 as everything is inside the firewall at this point. There is no need to change the port within Tableau Server if you're not going to also SSL enable your TS internal deployment. So what kind of error do you get when you do not change the gateway port and you leave it at default?
-
3. Re: Tableau Server reverse proxy port issue
Samantha Gunasekara Jan 9, 2017 2:22 AM (in response to Samantha Gunasekara)Thanks Patrick and Jeff.
This has been resolved now. Issue was caused by proxy server WAF settings.
-
4. Re: Tableau Server reverse proxy port issue
Raj d Jan 23, 2017 12:23 PM (in response to Samantha Gunasekara) -
5. Re: Tableau Server reverse proxy port issue
Samantha Gunasekara Jan 30, 2017 3:42 PM (in response to Samantha Gunasekara)Sorry Raj. our security team will not allow us to share our reverse proxy architecture.
-
6. Re: Tableau Server reverse proxy port issue
Ravi Kumbar Dec 14, 2017 5:10 AM (in response to Samantha Gunasekara)Hi Samantha,
I have similar situation.!!
I am an external user here and I am trying to hit Reverse Proxy to access Tableau Server using JavaScript API.
Can you please tell me how to pass username and password to the Reverse Proxy in javascript.
PFB my code
<script type="text/javascript"
src="https://mytableau.com/javascripts/api/tableau-2.min.js"></script>
<script type="text/javascript">
function initViz() {
var containerDiv = document.getElementById("vizContainer"),
url = "http://mytableau.com/views/RegionalDistricts/Districts",
options = {
hideTabs: true,
onFirstInteractive: function () {
console.log("Run this code when the viz has finished loading.");
}
};
var viz = new tableau.Viz(containerDiv, url, options);
// Create a viz object and embed it in the container div.
}
</script>
Regards
Ravi