CentOS nginx の起動スクリプト



CentOSにインストールしたnginxの
起動スクリプトを作成しました。


#!/bin/bash
#
# Startup script for the nginx
#
# chkconfig: 345 80 15
# description: Nginx web server.

# Source function library.
. /etc/rc.d/init.d/functions

start(){
    /sbin/nginx
}

stop(){
    kill `cat /usr/local/nginx/nginx.pid`
}

case "$1" in
    start)
        start
        ;;
    stop)
        stop
        ;;
    restart)
        stop
        start
        ;;
    *)
        echo "Usage: $0 {start|stop|restart}"
esac

exit 0




もどる