1.nginx: [emerg] invalid number of arguments in "root" directive in 'xxxxxxxxxxx'nginx/nginx.conf:41
此处是root路径配置问题,root指向的路径不能有中文,末尾得有分号;结尾。
例如路径是:C:\Users\admin\Desktop\szh\node 需换成 /Users/admin/Desktop/szh/node/;
2.nginx error: CreateFile "xxxxxxx/logs/nginx.pid" failed
解决方法:
使用命令创建/logs/nginx.pid文件:
nginx -c conf/nginx.conf
nginx常用命令:
验证配置是否正确: nginx -t
查看Nginx的版本号:nginx -V
启动Nginx:start nginx
快速停止或关闭Nginx:nginx -s stop
正常停止或关闭Nginx:nginx -s quit
配置文件修改重装载命令:nginx -s reload
查看报错信息可以查看logs下面的error.log文件。