iI have a Linux machine, somme and some applications are running web interfaces. I'd
I'd like to create a web server, opened to the internetInternet, in order to access these local web interfaces (or web interface on others local machines).
ExempleExample, 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 localhostInternet:88 (mini http server)
http(s)://mywebserver/ddwrt --> redirects to 192.168.0.254:80 (dd-wrt interface)
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...
doDo you know a way to do it this? (iI tried "pound" reverse proxy, but it's not ok..it doesn't work.)
thanks