You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running this on a raspberry pi with nginx. I can run v10.303 with no issues. When I update to v11 (both 11.292 or 11.306), I can access the admin screen, but when I try to launch a world, I get the error:
WebSocket connection to 'wss://<my.domain>/socket.io/?session=97381d03648f3d1b7f1b2970&EIO=4&transport=websocket' failed:
Any idea what may have changed to cause this? Nothing else in my config changed besides the foundry version
This is my nginx config:
server {
# Enter your fully qualified domain name or leave blank
server_name my.domain;
# Sets the Max Upload size to 300 MB
client_max_body_size 300M;
# Proxy Requests to Foundry VTT
location / {
# Set proxy headers
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# These are important to support WebSockets
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
# This should match the published port in your docker-compose file
proxy_pass http://localhost:30004;
}
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/my.domain-0001/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/my.domain-0001/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = my.domain) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name my.domain;
listen 80;
Steps to reproduce
Pull a v11 foundry image felddy/foundryvtt
try to launch a world
Expected behavior
I expect the world to launch without websocket errors
Bug description
I'm running this on a raspberry pi with nginx. I can run v10.303 with no issues. When I update to v11 (both 11.292 or 11.306), I can access the admin screen, but when I try to launch a world, I get the error:
WebSocket connection to 'wss://<my.domain>/socket.io/?session=97381d03648f3d1b7f1b2970&EIO=4&transport=websocket' failed:
Any idea what may have changed to cause this? Nothing else in my config changed besides the foundry version
This is my nginx config:
Steps to reproduce
Expected behavior
I expect the world to launch without websocket errors
Container metadata
Relevant log output
Code of Conduct
The text was updated successfully, but these errors were encountered: