0
書き換えが新しくなりました。私のホストで2つのサービスを実行:nginxをプロキシに書き換える方法は?
location /{
#this works fine
proxy_pass http://myMainServiceIp/;
}
location /wordpress{
#works but redirects to http://example.com/wp-admin/install.php
#rather than http://example.com/blog/wp-admin/install.php
proxy_pass http://wordpressServiceIp/;
}
/blog/*params*/*etc*/*etc*
をワードプレスサービスに正しく転送するにはどうすればよいですか?