I ran into an issue with one of our Spring Boot applications. We have it running with https on port 8443 and it all works fine. Now we're building an integration with an external payment processor and they require that we have a callback endpoint in our application on port 443.
Some research tells me that deploying a Spring boot app listening to a port number below 1024 is not allowed. The threads i find on this issue usually say "use a port number above 1024" and the poster walks off happy. I already have that and need to figure out a solution that uses port 443.
Does anyone have any recommendations? Could i solve this by building an Apache proxy for the callback endpoint?
We have web applications using Apache2 and port 443 on the same server, so the Boot application needs to coexist with that.