Nginx模块怎么调试
1个回答
展开全部
(1)修改nginx源代码目录下子目录/auto/cc中的conf文件,将ngx_compile_opt="-c"改为ngx_compile_opt="-c -g"
(2)在编译的时候加上debug选项,nginx的安装脚本如下:
./configure --user=www --group=www --prefix=/export/lx/servers/nginx-debug --add-module=../ngx_cache_purge-1.2 --with-debug --with-pcre --with-http_sub_module --with-http_stub_status_module --with-http_ssl_module
make -j 18&& make -j 18 install
(3)修改安装完毕之后生成的nginx配置文件:nginx.conf,加入
error_log /export/lx/servers/nginx_debug/logs/error.log debug;配置项
如果是做模块开发,则需要将nginx设置为单进程模式才可以调试开发的模块中的代码
加入如下几句配置项:
worker_processes 1;
master_process off; # 单进程模式
daemon off;
(2)在编译的时候加上debug选项,nginx的安装脚本如下:
./configure --user=www --group=www --prefix=/export/lx/servers/nginx-debug --add-module=../ngx_cache_purge-1.2 --with-debug --with-pcre --with-http_sub_module --with-http_stub_status_module --with-http_ssl_module
make -j 18&& make -j 18 install
(3)修改安装完毕之后生成的nginx配置文件:nginx.conf,加入
error_log /export/lx/servers/nginx_debug/logs/error.log debug;配置项
如果是做模块开发,则需要将nginx设置为单进程模式才可以调试开发的模块中的代码
加入如下几句配置项:
worker_processes 1;
master_process off; # 单进程模式
daemon off;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询