Skip to main content
Grammar and formatting
Source Link
jasonwryan
  • 74.8k
  • 35
  • 204
  • 230

How to redirect httpHTTP request to different local web servers

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

How to redirect http request to different local web servers

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

How to redirect HTTP request to different local web servers

I have a Linux machine and some 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).

Example, 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 this? I tried "pound" reverse proxy, but it doesn't work.

Source Link
Matt
  • 11
  • 1
  • 2

How to redirect http request to different local web servers

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