cloud-computing/loadbalancer/httpd-vhost.conf
2023-06-21 12:20:04 +02:00

13 lines
282 B
Plaintext

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