Tôi muốn thiết lập proxy ngược trên VPS cho ứng dụng Heroku của mình ( http://lovemaple.heroku.com ) Vì vậy, nếu tôi truy cập, mysite.com/blog
tôi có thể nhận nội dung trong http://lovemaple.heroku.com
Tôi đã làm theo các hướng dẫn trên wiki Apache .
location /couchdb {
rewrite /couchdb/(.*) /$1 break;
proxy_pass http://localhost:5984;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
Tôi đã thay đổi nó để phù hợp với tình huống của tôi:
location /blog {
rewrite /blog/(.*) /$1 break;
proxy_pass http://lovemaple.heroku.com;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
Khi tôi truy cập mysite.com/blog
, trang sẽ hiển thị, nhưng tệp js / css không thể nhận được (404).
Liên kết của họ trở thành mysite.com/style.css
nhưng không mysite.com/blog/style.css
.
Có gì sai và làm thế nào tôi có thể sửa chữa nó?