nginx 源码安装tengine 安装依赖包 yum -y install gcc gcc-c++ zlib-devel openssl-devel pcre-devel gd gd-devel ncurses-devel... 01月26日 747源码安装tengine已关闭评论 阅读全文
nginx 关于nginx configure编译参数 常用编译选项 --prefix= 指向安装目录 --sbin-path 指向(执行)程序文件(nginx) --conf-path= 指向配置文件(nginx.conf) --with-http_ss... 01月16日 793关于nginx configure编译参数已关闭评论 阅读全文
nginx 关于nginx配置文件nginx.conf详解 user www www; #指定运行nginx进程的用户和组 worker_processes auto; #nginx开启的进程数 worker_cpu_affinity auto; #自动为每个... 01月12日 855 1 阅读全文
nginx Nginx添加系统服务 #!/bin/bash # chkconfig: 345 96 20 # description: Nginx service PROG="/usr/sbin/nginx" PIDF="/var/ru... 12月23日 650Nginx添加系统服务已关闭评论 阅读全文