After successfully connecting my Spring Boot application to fusionauth locally, I am trying to connect it to a live test instance of fusionauth with the same application.properties - just changing the base url of my app and my fusionauth instance and inserting the related client id and client secret.
However, the application now breaks and the redirect-url and authorization-url are mixed up in the browser:
authorization_uri=https://myapp.de/oauth2/authorize instead of https://fusionauthinstancebaseurl.de/oauth2/authorize
and
redirect_uri=https://fusionauthinstancebaseurl/login/oauth2/code/fusionauth instead of https://myapp.de/login/oauth2/code/fusionauth
Here is my .properties file
Am I missing something?
Thanks.