#web #live #streaming #mikrotik #loadbalance @gigpixs (at Melbourne, Victoria, Australia)
seen from China
seen from France
seen from China

seen from United States
seen from United States

seen from United States

seen from United States

seen from Sweden

seen from Malaysia

seen from United States
seen from Costa Rica
seen from Australia
seen from China

seen from Malaysia
seen from United States
seen from China

seen from China

seen from Thailand
seen from Türkiye
seen from South Korea
#web #live #streaming #mikrotik #loadbalance @gigpixs (at Melbourne, Victoria, Australia)
#it #networking #loadbalance #mikrotik #cloudcore #ciscoswitch #poe #fibre #sfp #event #prep (at Melbourne, Victoria, Australia)
Managing loadbalancer pool membership
As part of my work at Global I needed a method for temporarily removing an Apache server from the loadbalancer pool without shutting down the daemon.
I came up with the following addition to the default vhost:
<Location /ping> RewriteEngine On RewriteCond /etc/apache2/inservice -f RewriteRule . - [R=200] RewriteRule . - [R=503] </Location>
The loadbalancer was then configured to poll /ping/ regularly, removing it from the pool if it didn't return OK (200).
The 'inservice' file was placed manually (instead of with puppet), which meant we could be confident if it was absent, the machine wouldn't receive traffic until we restored it.