Spaces:
Running on Zero
Running on Zero
Disable SSR: the Node proxy does not forward the /ws WebSocket upgrade
Browse files
app.py
CHANGED
|
@@ -613,4 +613,4 @@ async def homepage():
|
|
| 613 |
# Avoid ZeroGPU "no GPU function" error at boot.
|
| 614 |
spaces.GPU(lambda: None)
|
| 615 |
|
| 616 |
-
app.launch(server_name="0.0.0.0", server_port=7860)
|
|
|
|
| 613 |
# Avoid ZeroGPU "no GPU function" error at boot.
|
| 614 |
spaces.GPU(lambda: None)
|
| 615 |
|
| 616 |
+
app.launch(server_name="0.0.0.0", server_port=7860, ssr_mode=False) # the SSR Node proxy does not forward the /ws upgrade
|