I'm doing a deployer of my first project in Spring Boot + Angular. I have a linux server (centos) where I took a tutorial to install tomcat: tutorial
Tomcat is configured according to the tutorial, I've already been able to deployer a war, but I'm having problems accessing my rest method. On the login screen when I click the login button and I follow the Chrome debugger, I can see that the POST is triggered, but it does not reach method rest to be able to authenticate.
And my return (response.data) is a 403 error: Access to the specified resource has been forbidden.
Does anyone know how to tell me if there is any setting in tomcat or in the spring boot project itself to get this access to my rest class?
In development mode, everything works perfectly, now putting it on a server is where that error occurs.
I'm using to develop the Intellij IDE.