nginx プロキシを使用しており、ベース URL をサーバー URL に置き換えようとしています。たとえばwww.google.com
、 my を介してプロキシし、すべてのベース URL インスタンス ( ) を ( )localhost:8000
に置き換えたいとします。www.google.com
localhost:8000
これまでの私のnginx.conf:
server {
listen 8080;
server_name localhost;
location / {
proxy_pass http://www.google.com/;
rewrite ^/.google.com /localhost:8080 last;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}