重启nginx是出现了如下错误:
nginx: [emerg] unknown log format “main” in /usr/local/nginx/nginx.conf:124
解决办法:
打开nginx.conf,”main”错误是因为丢失了log_format
选项,默认把他屏蔽掉了,修改之后问题解决
http {
include mime.types;
default_type application/octet-stream;
#取消以下三行注释
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)