在http段放入配置项
lua_code_cache off;
nginx: [emerg] getgrnam("root") failed in /Users/a/Desktop/financial_report/nginx.conf:1
解决方法:
user gao staff;
自己的用户,默认为用户名+组
user root wheel;
root用户
nginx -s reload -p `pwd`/ -c nginx.conf
-p 为启动目录, -c为配置文件路径,两者联合就是当前目录下的nginx.conf配置文件,-s stop/reload 重启停止,还可以-t 检测配置文件语法