Answer the question
In order to leave comments, you need to log in
Is it possible to broadcast multiple web servers through one web server?
Suppose you have a web server that is broadcast to the Internet, and there are three computers on the local network with web servers that also need to be broadcast to the Internet. Is it possible to broadcast these three web servers through one web server, and if so, how?
Answer the question
In order to leave comments, you need to log in
This is a proxy function.
An example Apache config for proxying requests to a host within the network:
<VirtualHost *:80>
ServerName domain.com
ProxyRequests On
ProxyPreserveHost On
ProxyPass / http://192.168.0.50/DIR/
ProxyPassReverse / http://192.168.0.50/DIR/
</VirtualHost>
<VirtualHost *:80>
ServerName example.com
ProxyRequests On
ProxyPreserveHost On
ProxyPass / http://192.168.0.100/
ProxyPassReverse / http://192.168.0.100/
</VirtualHost>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question