Nginx安裝、默認虛擬主機、用戶認證、域名重定向
cd到 /usr/local/src/ 目錄cd /usr/local/src/
下載Nginx源碼包wget http://nginx.org/download/nginx-1.12.1.tar.gz
解壓源碼包tar zxvf nginx-1.12.1.tar.gz
進入源碼包目錄cd nginx-1.12.1
進行編譯(這裏我們沒有加什麽參數,但是如果有需要就可以在這一步加上參數)./configure --prefix=/usr/local/nginx
然後makemake && make install
創建啟動腳本vim /etc/init.d/ngin
添加以下內容
#!/bin/bash
#description: http service.
#Source Function Library
. /etc/init.d/functions
#Nginx Settings
NGINX_SBIN="/usr/local/nginx/sbin/nginx"
NGINX_CONF="/usr/local/nginx/conf/nginx.conf"
NGINX_PID="/usr/local/nginx/logs/nginx.pid"
RETVAL=0
prog="Nginx"
start()
{
echo -n $"Starting $prog: "
daemon $NGINX_SBIN -c $NGINX_CONF
RETVAL=$?
echo
return $RETVAL
}
stop()
{
echo -n $"Stopping $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -TERM
rm -rf /dev/shm/nginx_temp
RETVAL=$?
echo
return $RETVAL
}
reload()
{
echo -n $"Reloading $prog: "
killproc -p $NGINX_PID $NGINX_SBIN -HUP
echo
return $RETVAL
}
restart()
{
stop
start
}
configtest()
{
$NGINX_SBIN -c $NGINX_CONF -t
return 0
}
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
restart
;;
configtest)
configtest
;;
*)
echo $"Usage: $0 {start|stop|reload|restart|configtest}"
RETVAL=1
esac
exit $RETVAL
更改配置文件權限為775、hkconfig進行管理
Nginx安裝、默認虛擬主機、用戶認證、域名重定向