Configuration summary + using system PCRE library + OpenSSL library is not used + using system zlib library nginx path prefix: "/home/xiaoyun-app/cloud-system/nginx" nginx binary file: "/home/xiaoyun-app/cloud-system/nginx/sbin/nginx" nginx modules path: "/home/xiaoyun-app/cloud-system/nginx/modules" nginx configuration prefix: "/home/xiaoyun-app/cloud-system/nginx/conf" nginx configuration file: "/home/xiaoyun-app/cloud-system/nginx/conf/nginx.conf" nginx pid file: "/home/xiaoyun-app/cloud-system/nginx/logs/nginx.pid" nginx error log file: "/home/xiaoyun-app/cloud-system/nginx/logs/error.log" nginx http access log file: "/home/xiaoyun-app/cloud-system/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp"
时间: 2023-08-15 17:11:00 浏览: 274
这个信息是Nginx在运行`./configure`命令后生成的配置概述。它显示了Nginx的一些重要配置信息,包括:
- 使用系统PCRE库
- 不使用OpenSSL库
- 使用系统zlib库
- Nginx的安装路径为`/home/xiaoyun-app/cloud-system/nginx`
- Nginx的二进制文件路径为`/home/xiaoyun-app/cloud-system/nginx/sbin/nginx`
- Nginx的模块路径为`/home/xiaoyun-app/cloud-system/nginx/modules`
- Nginx的配置文件路径为`/home/xiaoyun-app/cloud-system/nginx/conf/nginx.conf`
- Nginx的PID文件路径为`/home/xiaoyun-app/cloud-system/nginx/logs/nginx.pid`
- Nginx的错误日志文件路径为`/home/xiaoyun-app/cloud-system/nginx/logs/error.log`
- Nginx的HTTP访问日志文件路径为`/home/xiaoyun-app/cloud-system/nginx/logs/access.log`
- Nginx的HTTP客户端请求体临时文件路径为`client_body_temp`
- Nginx的HTTP代理临时文件路径为`proxy_temp`
- Nginx的HTTP FastCGI临时文件路径为`fastcgi_temp`
- Nginx的HTTP uWSGI临时文件路径为`uwsgi_temp`
- Nginx的HTTP SCGI临时文件路径为`scgi_temp`
这些信息可以帮助你了解Nginx的配置,以及在需要调试Nginx时提供必要的信息。
阅读全文