-
I have an app running on a server. When I first connect to the app, the page renders as normal in my browser. The problem is, when I refresh/reload the page, it turns blank with nothing shown. If I wait for a couple minutes to reload again, the page appears normal. This issue doesn’t happen when testing the app locally on my computer. Also, when running on the server, the taipy.gui.navigate function in my code works fine, where I can either reload the same page or navigate to a different page. Any help would be much appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Deploying Taipy shouldn't bring any problems. You can check the deployment documentation here. Could you provide more information?
|
Beta Was this translation helpful? Give feedback.
Awesome! It works now after I've added the following block from the links you suggested.
location /socket.io {
proxy_buffering off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://127.0.0.1:8000/socket.io;
}
Problem solved!
Best.