Can I use a proxy with FusionAuth?
-
I have a FusionAuth server that is in a corporate network. All internet traffic goes through a proxy. Can I use FusionAuth?
-
There's no supported way. Here's the official docs:
FusionAuth is able to handle all HTTP traffic and any network handling between the browser and FusionAuth should be as simple as possible.
However, this solution was found by a community member (for the docker install). Configure the environment variable:
FUSIONAUTH_ADDITIONAL_JAVA_ARGS: -Dhttp.proxyHost=some.proxy -Dhttp.proxyPort=8210 -Dhttp.nonProxyHosts="localhost|127.0.0.1|10.*.*.*|172.*.*.*"
before you start FA and it should work.