You need to build nginx with the option: with-debug.
需要重新编译nginx,并加上–with-debug
Then in nginx.conf, you should write
1. error_log logs/error.log debug;
And you should set
1. master_process off;
2. daemon off;
in nginx.conf to simplify debugging.
Then load some pages to test, and look up the logs/error.log for what happen.
如果需要调试Nginx,你需要增加–with-debug选项重新编译一个Nginx,同时,nginx.conf如下配置:
1. error_log logs/error.log debug; # 只记录调试日志
2. master_process off; # 简化调试 此指令不得用于生产环境
3. daemon off; # 简化调试 此指令可以用到生产环境
分享到:
相关推荐
如果您看到“Welcome to nginx”的页面,那么您已经成功安装了 Nginx 服务器。现在,您可以继续安装 Lemp Stack 或设置 FTP 服务器等。 小结 在本教程中,我们学习了如何在 CentOS 6 上使用 yum 安装 Nginx 服务器...
In doing so you will learn how to tune NGINX for various situations, what some of the more obscure configuration options do, and how to design a decent configuration to match your needs. You will no ...
How to load balance Nginx and use it as a highly available web platform. How to monitor traffic and automate common administrative tasks. How to use scripts to perform routine checks for health issues...
How to limit request by IP on nginx?
How to configure content caching, load balancing, monitoring, high availability (HA), and other critical NGINX features. How to protect your applications: mitigate DDoS attacks, stop Layer 7 attacks, ...
This practical guide walks you through how to tune one of the leading free open source web servers to attain optimal performance for high-traffic sites. It also explores ways to improve network ...
**Nginx版本升级步骤详解** 在Web服务器领域,Nginx以其高性能、低内存消耗以及高并发处理能力而备受青睐。随着新版本的发布,可能会包含性能优化、安全修复和新特性,因此定期更新Nginx版本是必要的。本文将详细...
./configure --with-http_flv_module --add-module=path/to/nginx-http-flv-module ``` 其中`path/to/nginx-http-flv-module`应替换为实际的模块路径。 6. 编译和安装:执行`make`和`make install`命令来编译和...
NGINX caching and cache clustering are powerful tools that can ... This ebook is a key resource for learning how NGINX caching capabilities work and how to put NGINX to use in your web infrastructure.
arm 架构 docker运行nginx镜像包,arm 架构 docker运行nginx镜像包,arm 架构 docker运行nginx镜像包,arm 架构 docker运行nginx镜像包,arm 架构 docker运行nginx镜像包,arm 架构 docker运行nginx镜像包,arm 架构...
nginx-1.26.0-i686.exe nginx-1.26.0-i686-debug.exe nginx-1.26.0-x86.exe nginx-1.26.0-x86_64-debug.exe nginx-slim-1.26.0-i686.exe nginx-slim-1.26.0-x86_64.exe
Nginx是一种高性能、高并发的Web服务器,特别擅长于大规模内容的分发、Web加速以及保护应用容器。它能够精确地与现代操作系统集成,即使在商用硬件上运行也能达到前所未有的效率。Nginx的开源版本由Nginx公司开发并...
Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。 其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例...
在Linux系统中,离线安装Nginx是一个常见的需求,特别是在没有互联网连接或者网络环境受限的服务器上。本文将详细讲解如何通过离线方式在Linux上安装Nginx,同时也会涉及Nginx依赖的软件如openssl和gcc的安装过程。 ...
这个名为"nginx-linux-arm64.zip"的压缩包提供的是专为ARM64架构(也称为AArch64)编译的Nginx版本,适用于基于Linux操作系统的64位ARM处理器设备,如树莓派、某些云服务器或嵌入式系统。无需繁琐的编译过程,只需...
zypper addrepo --refresh --no-gpgcheck /path/to/nginx_repo nginx_repo ``` 这里的`/path/to/nginx_repo`应替换为解压后的Nginx软件包所在的目录。 2. **更新软件包数据库**: 接下来,你需要更新zypper的...
实战nginx.pdf。主要内容包括:第1章 Nginx简介;第2章Nginx服务器安装与配置;第3章Nginx基本配置与优化;第4章Nginx与PHP;第5章Nginx与JSP、ASP.NET..第6章Nginx http负载均衡和反向代理;第7章Nginx 的rewrite...
**Nginx 1.13.3 版本详解** Nginx 是一款高性能的 HTTP 和反向代理服务器,广泛应用于网站托管、负载均衡以及应用程序交付等领域。它以其高效、稳定和轻量级的特性著称,尤其在处理静态内容和高并发请求时表现优秀...
sudo dpkg -i /path/to/nginx-full_1.18.0_amd64.deb ``` 在安装过程中可能会遇到依赖关系未满足的情况,如果出现错误提示,可以使用`apt-get`或`dpkg --force-depends`来解决: ```bash sudo apt-get install -f ...