Setting a certificate for FusionAuth
-
What is the environment variable to set
fusionauth-app.https.certificate
? I want to use FusionAuth with HTTPS without using a proxy.It doesn't seem to match the documented syntax?
-
FUSIONAUTH_APP_HTTPS_CERTIFICATE
would be the variable name to use.However, properly escaping a multi-line certificate can be tricky.
If you can write the cert out to a file, you could set
FUSIONAUTH_HTTPS_CERTIFICATE_FILE
instead, which doesn't have the escaping complexity. -