Greetings, its been a while since I posted here. Was working with springboot thanks to the advices of this forum.
I have generated a .jar from my springboot application. It runs fine on localhost and it also runs fine on http on my VPS when I run it with : #
java $JAVA_OPTS -Dserver.port=10002 -jar acme.jar
On my VPS I use the WHM +cPanel. I also use EasyApache4.
First issue, the HTTPS is not working. From what I could google, I need to export the ssl certificate of the domain that will host the application and use it?
Second issue, I want this app to work on a subdomain, like in: coyote.acme.com instead of acme:10002. How can I do that? How can I run this app in a domain/subdomain and not as root?