Tagged Questions
0
votes
1answer
97 views
Do Apache virtual hosts perform better when listening to different ports?
I plan to use mod_proxy to route requests to Apache virtual hosts based on the URL. example.com/foo/x is routed to foo.example.com/x, example.com/bar/x is routed to bar.example.com/x, etc.
Are there ...
1
vote
1answer
4k views
Managing multiple reverse proxies for one virtual host in apache2
I have many reverse proxies defined for my js-host VirtualHost, like so:
/etc/apache2/sites-available/js-host
<VirtualHost *:80>
ServerName js-host.example.com
[...]
ProxyPreserveHost On
...