1、启动
$ nginx -c nginx.config
-c 参数指定了要加载的nginx配置文件路径
2、检查配置文件
nginx -t
或者
nginx -t -c conf/nginx.conf
3、平滑重启
nginx -s reload
4、关闭
nginx -s stop
alias和root区别
root和alias是系统文件路径的设置
root 设置根目录
alias 重置当前文件的目录
location /img/ {
alias /var/www/image/;
}
# 访问/img/目录里面的文件时,ningx会自动去/var/www/image/目录找文件
location /img/ {
root /var/www/image;
}
# 访问/img/目录下的文件时,nginx会去/var/www/image/img/目录下找文件。