blob: 022098453c1925bc68d97a3e033a312edfc70c68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/bash
export TERM=dumb
export HTTPDCONF=/etc/httpd/conf.d/sx.conf
# Begin configuration before starting daemonized process
# and start generating host keys
function begin_config {
echo "=> Begin httpd configuration for host $HOSTNAME"
mkdir -p /var/run/httpd
if [ -z "$DOCROOT" ]; then
echo "===> Changing document root to $DOCROOT"
${DOCROOT=/var/www/html}
echo "DocumentRoot \"$DOCROOT\"" >> $HTTPDCONF
fi
}
# End configuration process just before starting daemon
function end_config {
stop_server
echo "=> End httpd configuration ..."
}
# Start the httpd server in background. Used to perform config
# against the database structure such as user creation
function start_server {
echo "===> Starting httpd server ..."
/usr/sbin/apachectl &
sleep 8
}
# Stop the httpd server running in background.
function stop_server {
echo "===> Stopping httpd server ..."
killall httpd
rm -rf /run/httpd/*
sleep 8
}
# Start the httpd server as a deamon and execute it inside
# the running shell
function start_daemon {
echo "=> Starting httpd daemon ..."
exec /usr/sbin/apachectl -D FOREGROUND
}
if [[ "$0" == *"httpd.sh" && ! $1 = "" ]];then
eval "$@";
fi
|