Nope.
- mom, dad, peskybrother, mybooks and myfanfics are all different computers each running the built-in Calibre web-server with a different library
- a computer named server running an Apache httpd server on port 80
- hostname somerandom.dyndns.org set-up at DynDNS.com to point to the dynamic IP address assigned by my ISP
- router is set-up to forward external/internet requests from port 80 to server
Basically, I want to be able to access the different libraries on different computers from the internet without having to set-up port forwarding on my router for each PC.
I have the feeling this is what I'm wanting but I'm not sure where I should add this or if this is even the correct way of doing it...
Code:
ProxyPass /mom/ http://mom:8080/
ProxyPassReverse /mom/ http://mom:8080/
ProxyPass /dad/ http://dad:8080/
ProxyPassReverse /dad/ http://dad:8080/
ProxyPass /peskybrother/ http://peskybrother:8080/
ProxyPassReverse /peskybrother/ http://peskybrother:8080/
ProxyPass /books/ http://mybooks:8080/
ProxyPassReverse /books/ http://mybooks:8080/
ProxyPass /fanfics/ http://myfanfics:8080/
ProxyPassReverse /fanfics/ http://myfanfics:8080/
Thanks! Your help is very much appreciated.