Fix: Cable not redirect by reverse-proxy
This commit is contained in:
parent
0ed0856c66
commit
c66a062114
@ -122,6 +122,19 @@ server {
|
|||||||
server_name manyfold;
|
server_name manyfold;
|
||||||
root /opt/manyfold/public;
|
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 / {
|
location / {
|
||||||
try_files \$uri/index.html \$uri @rails;
|
try_files \$uri/index.html \$uri @rails;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user