KurocoFrontをProxy Serverを通して別のサーバーから使うにはどのようにすればよいですか?

https://bar.example.com/foo/https://bar.g.kuroco-front.app/foo/の表示をプロキシーを通して表示させる場合の設定は以下のようになります。

nginxの場合

location /foo {
    proxy_pass https://bar.g.kuroco-front.app;
    proxy_redirect     https://bar.g.kuroco-front.app/foo https://bar.example.com/foo;
    proxy_set_header   Host bar.g.kuroco-front.app;
}

Apache2.4のmod_proxyを利用する場合

ProxyRequests Off

ProxyPass /foo https://bar.g.kuroco-front.app/foo
ProxyPassReverse /foo https://bar.g.kuroco-front.app/foo
ProxyPreserveHost Off

お探しのページは見つかりましたか?解決しない場合は、問い合わせフォームからお問い合わせいただくか、Slackコミュニティにご参加ください。