Hi everyone,
I want to deploy a Docker image of Inception on my server, at
example.com/inception. As port 8080 is already taken, I redirected the container port to 8081:8080. Then, I created a reverse proxy in the Apache config file:
...
</VirtualHost>
I also created a settings.properties file and added the following:
I also tried adding the following line to the settings.properties file, but still no luck:
server.servlet.context-path=/inception
I suspect that the issue lies in how the application handles redirects, possibly ignoring the /inception path prefix. Any insights or suggestions would be greatly appreciated!
Thank you in advance for your help!