I have several applications running on the same cluster and want to set up a subdomain for each application. To give you a brief description of current set up, I have a Django app, Jira, and Gitlab running in a cluster. It would be nice I can redirect all requests to
Django App via xxxx.com(even localhost)/django-app
Jira: xxx.com(+ localhost)/jira
Also, I need to make sure any links within Django app should pick up this subdomain from the frontend so when if there is an tag, it should always send users to xxx.com(localhost)/django-app/category/page
I have been looking at Nginx reverse proxy but I cannot get subdomains to work like I want above. Please help!