Fix: Cable not redirect by reverse-proxy

This commit is contained in:
SunFlowerOwl 2025-11-24 16:34:04 -05:00
parent 0ed0856c66
commit c66a062114

View File

@ -122,6 +122,19 @@ server {
server_name manyfold;
root /opt/manyfold/public;
location /cable {
proxy_pass http://127.0.0.1:5000;
proxy_set_header Host \$host;
proxy_http_version 1.1;
proxy_set_header Upgrade \$http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
}
location / {
try_files \$uri/index.html \$uri @rails;
}