Problem: I have two web applications which were created by using JAVA and PYTHON respectively.
The JAVA application runs using Tomcat server on the port number 8000. The PYTHON application uses web.py and runs on the port number 8080. The Python (API) performs a back-end job and Java (UI) acts a front-end guy.
In my local Ubuntu machine, these applications were working perfectly. However, I have to make this application run in my QA machine in which only ports 80 and 443 are open and all the remaining ports are restricted. I tried using authbind to run java on port 80 but it failed.
Is there any other ways to redirect the HTTP requests to their respective web services and port number internally using URL Filtering ? If there any other methods kindly share the information about it.
Thanks in advance.