i have a server with apache that runs a mailing service, a wordpress multisite
I have followed guides online to make the above work
now I have a service from Vaadin (java stuff) running on localhost:8080. I can also access this through my public ip:8080.
How do I go about making a "pretty link" for the localhost:8080 service.
Could be example.com/something or something.example.com (any type of readable link is what I am after).
I tried adding the following to 000-default.conf:
<VirtualHost *:80>
ProxyPass /jenkins/ myip:8080
ProxyPassReverse /jenkins/ myip:8080
SetOutputFilter proxy-html
ProxyHTMLURLMap myip:8080 mywebsite.com/jenkins
ProxyHTMLExtended On
</VirtualHost>
I added this below my other virtualhost *:80.