markdown [Nginx开启调试日志] #nginx

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown [Nginx开启调试日志] #nginx相关的知识,希望对你有一定的参考价值。


在server模块中,server_name下配置即可

```
server {
  listen       80;
  server_name  xx.xx.com;

  error_log /var/log/nginx/xx.xx.com/error.log debug;
}  
```

root与alias主要区别在于nginx如何解释location后面的uri,这会使两者分别以不同的方式将请求映射到服务器文件上。

root的处理结果是:root路径+location路径

alias的处理结果是:使用alias路径替换location路径

alias是一个目录别名的定义,root则是最上层目录的定义。


问题:the rewritten URI has a zero length

```
rewrite /tomcatapi/(.*) /$1 break;
```

$1前边加一个/,保证至少会有一个/

以上是关于markdown [Nginx开启调试日志] #nginx的主要内容,如果未能解决你的问题,请参考以下文章

markdown nginx的开启的gzip压缩功能

markdown 配置WordPress调试错误日志

markdown [mybatis调试日志] #mybatis

nginx开启日志

nginx日志配置,以及日志轮询

nginx 错误调试应该如何处理?