Nginx usages

测试配置:
nginx -t -c /etc/nginx/nginx.conf

生效配置:
nginx -s reload

指定配置启动:
nginx -c /usr/local/nginx/conf/nginx.conf

错误:
nginx: [error] invalid PID number ““ in “/var/run/nginx.pid”
修正:
ps -aux | grep nginx 查找主进程号
echo 进程号 > /var/run/nginx.pid

配置可下载路径:

[root@ip-10-0-0-247 ~]# mkdir -p /etc/nginx/tools
[root@ip-10-0-0-247 ~]# chmod 777 /etc/nginx/tools/

location /tools {
root /etc/nginx;
autoindex on;
autoindex_exact_size off;
}

需要重启

发布者

傅, 健

程序员,Java、C++、开源爱好者. About me