欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 > nginx >
  • [nginx] nginx配置文件中的一些参数中文注解 日期:2014-11-22 00:39:20 点击:106 好评:0

    从2010年开始接触nginx也有三年多了!此文从博客教主博客转载过来,非常实用的NGINX配置文件中文参考 #定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数。 worker_processes 8; #全局错误日志定义类型,[ debug | info |...

  • [nginx] nginx配置ssl双向验证 nginx https ssl证书配置 日期:2014-11-22 00:33:43 点击:189 好评:0

    1、安装nginx 参考《nginx安装》 如果你想在单IP/服务器上配置多个https,请看《nginx 同一个IP上配置多个HTTPS主机》 2、使用openssl实现证书中心 由于是使用openssl架设私有证书中心,因此要保证以下字段在证书中心的证书、服务端证书、客户端证书中都相同...

  • [nginx] Nginx 413错误的排查:修改上传文件大小限制 日期:2014-11-22 00:22:46 点击:187 好评:0

    在上传时nginx返回了413错误,查看log文件,显示的错误信息是:413 Request Entity Too Large, 于是在网上找了下nginx 413错误发现需要做以下设置: 在nginx.conf增加 client_max_body_size的相关设置, 这个值默认是1m,可以增加到8m以增加提高文件大小限制;...

  • [nginx] Nginx如何优化突破十万高并发 日期:2014-11-22 00:20:38 点击:178 好评:0

    nginx指令中的优化(配置文件) worker_processes 8; nginx进程数,建议按照cpu数目来指定,一般为它的倍数。 worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000; 为每个进程分配cpu,上例中将8个进程分配到8个...

  • [nginx] Nginx内容替换sub_filter模块的过滤功能 日期:2014-11-22 00:19:52 点击:73 好评:0

    首先是示例: location / { sub_filter /head /headscript language=javascript src=x.js/script; proxy_set_header referer http://www.lvtao.net;#如果网站有验证码,可以解决验证码不显示问题 sub_filter_once on; sub_filter_types text/html;} 解释: s...

  • [nginx] Nginx Location 指令基础 日期:2014-11-22 00:18:51 点击:161 好评:0

    Nginx 中的 Location 指令 是NginxHttpCoreModule中重要指令。Location 指令比较简单,但却是配置 Nginx 过程中不得不去了解的。 Location 指令,是用来为匹配的 URI 进行配置,URI 即语法中的/uri/,可以是字符串或正则表达式。但如果要使用正则表达式,则...

  • [nginx] nginx/tengine限制流量如何配置 日期:2014-11-22 00:16:56 点击:133 好评:0

    限制每个IP一个线程,每个线程30K/s限制; 下载限制的相关配置 http { limit_zone one $binary_remote_addr 10m; server { location /upload/ { limit_conn one 1; limit_rate 30k; } }}...

  • [nginx] nginx配置支持shtml 日期:2014-11-22 00:16:12 点击:123 好评:0

    在nginx.conf配置文件中 http段加入以下内容 ssi on;ssi_silent_errors on;ssi_types text/shtml; 重启nginx即可.....

  • [nginx] nginx无法启动: libpcre.so.1/libpcre.so.0: cannot open shared 日期:2014-11-22 00:15:16 点击:174 好评:0

    nginx无法启动: libpcre.so.1/libpcre.so.0: cannot open shared object file解决办法 NGINX启动时提示错误: /usr/local/nginx/sbin/nginx -t/usr/local/nginx/sbin/nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object...

  • [nginx] nginx+php-fpm性能参数优化原则 日期:2014-11-22 00:14:26 点击:105 好评:0

    1.worker_processes 越大越好(一定数量后性能增加不明显) 2.worker_cpu_affinity 所有cpu平分worker_processes 要比每个worker_processes 都跨cpu分配性能要好;不考虑php的执行,测试结果worker_processes数量是cpu核数的2倍性能最优 3.unix domain socket...

  • 首页
  • 上一页
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 下一页
  • 末页
  • 2012009
栏目列表
推荐内容