i have a Linux machine, somme applications are running web interfaces. I'd like to create a web server, opened to the internet, in order to access these local web interfaces (or web interface on others local machines)
Exemple, from the internet:
http(s)://mywebserver/webmin --> redirects to localhost:10000 (webmin interface) http(s)://mywebserver/bitt --> redirects to localhost:1234 (bittorrent client interface) http(s)://mywebserver/httpd --> redirects to localhost:88 (mini http server)
http(s)://mywebserver/ddwrt --> redirects to 192.168.0.254:80 (dd-wrt interface)
etc...
do you know a way to do it ? (i tried "pound" reverse proxy, but it's not ok...)
thanks