欢迎光临IT网Linux学习频道

当前位置: > Linux服务器 > nginx >
  • [nginx] 隐藏nginx 版本号 日期:2015-11-26 13:33:51 点击:141 好评:0

    # curl --headwww.nginx.org HTTP/1.1 200 OK Server: nginx/ 0.8.31 Date: Wed, 13 Jan 2010 06:17:30 GMT Content-Type: text/html Content-Length: 2341 Last-Modified: Mon, 11 Jan 2010 15:45:11 GMT Connection: keep-alive Keep-Alive: timeout=15 Ac...

  • [nginx] CentOS下nginx配置文件的优化 日期:2015-11-25 20:19:23 点击:61 好评:0

    1、编译安装过程优化 在编译Nginx时,默认以debug模式进行,而在debug模式下会插入很多跟踪和ASSERT之类的信息,编译完成后,一个Nginx要有好几兆字节。在编译前取消Nginx的debug模式,编译完成后Nginx只有几百千字节,因此可以在编译之前,修改相关源码,取...

  • [nginx] nginx在centos环境下,实现3台虚拟机负载均衡 日期:2015-11-01 18:21:52 点击:113 好评:0

    负载均衡 先来简单了解一下什么是负载均衡,单从字面上的意思来理解就可以解释N台服务器平均分担负载,不会因为某台服务器负载高宕机而某台服务器闲置的情况。那么负载均衡的前提就是要有多台服务器才能实现,也就是两台以上即可。 测试环境 在VMware里安装...

  • [nginx] nginx防止爬虫 日期:2015-10-20 15:54:38 点击:187 好评:0

    方法一:修改nginx.conf server { listen 80; server_name www.ready.com; #添加如下内容即可防止爬虫 if ($http_user_agent ~* qihoobot|Baiduspider|Googlebot|Googlebot-Mobile|Googlebot-Image|Mediapartners-Google|Adsbot-Google|Feedfetcher-Google|Y...

  • [nginx] nginx 同时静态下载和web服务 日期:2015-10-20 15:52:10 点击:114 好评:0

    events { worker_connections 768; # multi_accept on; } http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; # server_tokens off; # server_names_hash_bucket_size 64; # serve...

  • [nginx] nginx做静态文件下载服务器 日期:2015-10-20 15:49:27 点击:140 好评:0

    最简单的配置nginx.conf使之成为静态文件下载服务器 sendfileon; tcp_nopushon; #keepalive_timeout0; keepalive_timeout65; #gzipon; server{ listen8082;#端口 server_namelocalhost;#服务名 root/dev/shm/update;#显示的根索引目录 autoindexon;#开启索引...

  • [nginx] Nginx一个IP配置多个主机 日期:2015-10-20 15:32:41 点击:173 好评:0

    今天,朋友有个网站要挂在我的服务器上,鼓捣了一下Nginx中配置多个主机和域名,具体的要求是: 主机只有一个IP地址 123.123.123.123 有两个功能不同的网站,一个是我现在的blog,一个是朋友的购物网站 有两个域名 www.wusay.org www.AusForYou.com,一个是...

  • [nginx] nginx和apache服务器下配置数据库信息 日期:2015-10-17 00:50:03 点击:103 好评:0

    apache下面直接配置数据库配置信息: 1)首先在apache下面的httpd.conf中的 # Secure (SSL/TLS) connections Include conf/extra/httpd-ssl.conf 下面引入(数据库配置文件db-info.conf) Include conf/extra/db-info.conf 2)配置数据库配置文件db-info.conf...

  • [nginx] 监控Nginx负载均衡器脚本 日期:2015-10-13 13:09:18 点击:139 好评:0

    监控Nginx负载均衡器脚本 1.编写脚本 vim nginx_pid.sh #!/bin/bash while : do nginxpid=`ps -C nginx --no-header | wc -l` if [ $nginxpid -eq 0 ];then /usr/local/nginx/sbin/nginx sleep 5 if [ $nginxpid -eq 0 ];then /etc/init.d/keepalived stop f...

  • [nginx] Nginx 静态文件缓存时间设置 日期:2015-10-13 13:08:23 点击:100 好评:0

    1.location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ 2. { 3. expires 30d; 4. } 5. 6. location ~ .*\.(js|css)?$ 7. { 8. expires 1h; 9. } 1.代表图片默认缓存30天 2.JS和CSS默认缓存1小时 用户可以根据需求设置Nginx...

  • 首页
  • 上一页
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 下一页
  • 末页
  • 2012009
栏目列表
推荐内容