Can I access KurocoFront through a proxy server?
To display https://bar.g.kuroco-front.app/foo/
on https://bar.example.com/foo/
through a proxy, use the configurations below.
For 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;
}
For mod_proxy in Apache 2.4:
ProxyRequests Off
ProxyPass /foo https://bar.g.kuroco-front.app/foo
ProxyPassReverse /foo https://bar.g.kuroco-front.app/foo
ProxyPreserveHost Off
Support
If you have any other questions, please contact us or check out Our Slack Community.