Need some help with Apache Proxy configuration.
My application is available at 8080 at below path.
http://localhost:8080/HotelOperations
My current configuration is set as below.
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
With this configuration I am able to access my application at port 80, however, I have to pass /HotelOperations
to it. I want to be able to access it without /HotelOperations
.
Accessible at http://localhost/HotelOperations
Desirable at http://localhost
Any help please.