diff --git a/install/manyfold-install.sh b/install/manyfold-install.sh index df0fde88f..9f131f6d1 100644 --- a/install/manyfold-install.sh +++ b/install/manyfold-install.sh @@ -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; }