欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 >
  • [nginx] 命令行查看nginx并发连接状态 日期:2014-07-23 13:18:49 点击:134 好评:0

    通过查看Nginx的并发连接,获取网站的负载情况的方法。 执行命令: 复制代码 代码示例: #netstat-n |awk/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]} 运行结果: TIME_WAIT 5349 //另一边已初始化一个释放 FIN_WAIT1 14 //应用说它已经完成 FIN_WAIT2...

  • [nginx] 一个分割ngnix网站日志的shell脚本 日期:2014-07-23 13:18:07 点击:85 好评:0

    一个分割nginx网站日志的脚本,文件名cut_nginx_logs.sh。 复制代码 代码示例: #!/usr/bin/bash #filename cut_nginx_logs.sh log_files_path=/home/wwwlogs/ log_files_dir=${log_files_path}$(date -d yesterday +%Y)/$(date -d yesterday +%m) #设置要切...

  • [nginx] Nginx nginx禁止访问实例及server配置详解 日期:2014-07-23 13:16:51 点击:187 好评:0

    nginx配置要求: 只对外提供部分服务。 nginx.conf配置如下: 复制代码 代码示例: #www.jbxue.com server { listen 80; server_name search.ext.jbxue.com keyword.it.net.cn; index index.jsp; root /opt/search2.5; location /nginx_status { stub_status...

  • [nginx] ubuntu安装与配置php+nginx+mysql环境 日期:2014-07-23 13:14:03 点击:71 好评:0

    安装nginx: 复制代码 代码示例: sudo apt-get install nginx 安装php+mysql: 复制代码 代码示例: apt-get install php5-cli php5-cgi mysql-server-5.0 php5-mysql 安装lighttpd即可,然后把里面的fast-cgi单独提取出来: 复制代码 代码示例: sudo apt-get...

  • [nginx] Nginx nginx多站点配置文件范例 日期:2014-07-23 13:11:57 点击:122 好评:0

    1、nginx.conf文件 复制代码 代码示例: user www www; worker_processes 1; error_log /home/wwwlogs/nginx_error.log crit; pid /usr/local/nginx/logs/nginx.pid; #Specifies the value for maximum file descriptors that can be opened by this process....

  • [nginx] Nginx nginx rewrite重写规则配置详解 日期:2014-07-23 13:09:01 点击:98 好评:0

    nginxrewrite重写规则配置教程 rewrite可以出现的地方有4个:NGX_HTTP_SRV_CONF,NGX_HTTP_SIF_CONF,NGX_HTTP_LOC_CONF,NGX_HTTP_LIF_CONF。分别对应着: NGX_HTTP_SRV_CONF:配置文件中的server域中的任何地方; NGX_HTTP_SIF_CONF:配置文件中server域中...

  • [nginx] Ngnix中fastcgi参数性能优化细节 日期:2014-07-23 13:07:20 点击:156 好评:0

    nginx应用服务器优化php缓存 fastcgi优化性能参数设置,在ngnix.conf中的http 层加上fastcgi参数如下: http { fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m; fastcgi_connect_timeout=300; fastcgi_send_...

  • [nginx] nginx如何限制搜索引擎爬虫频率与屏蔽网络爬虫? 日期:2014-07-23 13:03:29 点击:149 好评:0

    限制搜索引擎爬虫频率与禁止屏蔽网络爬虫,在nginx配置文件中加入以下代码: 复制代码 代码示例: #全局配置 limit_req_zone $anti_spider zone=anti_spider:10m rate=15r/m; #某个server中 limit_req zone=anti_spider burst=30 nodelay; if ($http_user_age...

  • [nginx] nginx域名与目录301重定向配置详解 日期:2014-07-23 13:01:09 点击:205 好评:0

    有时需要把某目录整个重定向到一个二级域名,或者不带www的顶级域名请求全部重定向到带www的二级域名。 如果是Apache,需要配置.htaccess,nginx不支持,需要在配置文件里面使用rewrite指令来实现。 顶级域名重定向到www 复制代码 代码示例: server { server_...

  • [nginx] nginx日志配置指令详解 日期:2014-07-23 12:59:42 点击:89 好评:0

    nginx日志记录模式 nginx日志相关的配置如access_log、log_format、open_log_file_cache、log_not_found、log_subrequest、rewrite_log、error_log。 nginx有一个非常灵活的日志记录模式。 每个级别的配置可以有各自独立的访问日志。日志格式通过log_format...

  • 首页
  • 上一页
  • 461
  • 462
  • 463
  • 464
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 下一页
  • 末页
  • 5405398
栏目列表
推荐内容