Reputation: 775
We are trying to execute bokeh server from a Windows Server. Everything looks fine. But when trying to reach the it from another device we get the following error in the web browser: "403: Forbidden". Even though the bokeh server is executed allowing all ports and incoming IPs, we still get a message telling us that the host is not in the whitelist. This is the server output when executing bokeh and trying to reach it from another computer:
Every device is connected to local network.
I attach what we get when log level is in debug:
Upvotes: 2
Views: 626
Reputation: 34568
There is a difference in how shell quoting works between platforms. On Windows, you need to do
--host=*
with no quotes around the asterisk.
Upvotes: 1