cloud-computing/loadbalancer/httpd-vhost.conf

13 lines
282 B
Plaintext
Raw Permalink Normal View History

2023-06-16 13:10:10 +02:00
<VirtualHost *:80>
<Proxy balancer://owncloud-cluster>
2023-06-22 13:47:15 +02:00
BalancerMember http://10.0.1.20:80
BalancerMember http://10.0.1.21:80
2023-06-16 13:10:10 +02:00
</Proxy>
ProxyPreserveHost On
ProxyPass / balancer://owncloud-cluster/
ProxyPassReverse / balancer://owncloud-cluster/
</VirtualHost>