Skip to content

Instantly share code, notes, and snippets.

@nikaz123
nikaz123 / apache-balancer.sh
Created September 30, 2017 16:54 — forked from SeonghoonKim/apache-balancer.sh
Apache HTTPD balancer-manager control script
#! /bin/sh
# Set up a default search path
PATH="/usr/bin:/bin"
CURL=`which curl`
if [ -z "$CURL" ]; then
echo "curl not found"
exit 1
fi