cloud-computing/loadbalancer/httpd-vhost.conf
2023-06-22 11:47:15 +00:00

13 lines
282 B
Plaintext

<VirtualHost *:80>
<Proxy balancer://owncloud-cluster>
BalancerMember http://10.0.1.20:80
BalancerMember http://10.0.1.21:80
</Proxy>
ProxyPreserveHost On
ProxyPass / balancer://owncloud-cluster/
ProxyPassReverse / balancer://owncloud-cluster/
</VirtualHost>