`
longzhun
  • 浏览: 370220 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

nginx实战

 
阅读更多

以下nginx配置是最新手机游戏网 正在使用的配置

访问速度非常优秀,对nginx进行了优化

希望对您有些帮助

 

user www www;
worker_processes 8;
worker_cpu_affinity 0001 0010 0100 1000 0001 0010 0100 1000;
worker_rlimit_nofile 65535;
error_log /usr/local/nginx/logs/error.log crit;
pid /usr/local/nginx/nginx.pid;


events {
    use epoll;
    worker_connections 65535;
}


http {

 

    include       mime.types;
    default_type  application/octet-stream;
    server_names_hash_bucket_size 128;
    client_header_buffer_size 32k;
    large_client_header_buffers 4 32k;
    client_max_body_size 8m;
    sendfile on;
    tcp_nopush     on;
    keepalive_timeout 60;
    tcp_nodelay on;
    fastcgi_connect_timeout 300;
    fastcgi_send_timeout 300;
    fastcgi_read_timeout 300;
    fastcgi_buffer_size 64k;
    fastcgi_buffers 4 64k;
    fastcgi_busy_buffers_size 128k;
    fastcgi_temp_file_write_size 128k;
    fastcgi_intercept_errors on;
    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 16k;
    gzip_http_version 1.0;
    gzip_comp_level 2;
    gzip_types       text/plain application/x-javascript text/css application/xml;
    gzip_vary on;

 

 

 

 


    server {
        listen       80;
        server_name  www.19195.cn 19195.cn;
        if ($host != 'www.19195.cn' ) {
           rewrite ^/(.*)$ http://www.19195.cn/$1 permanent;
        }
        index index.html index.htm index.php;
        root  /www/ws/doubanapp;
        error_page 404 /404.html;
        error_page 403 /404.html;
        location ~ .*\.(php|php5)?$
        {
            fastcgi_pass  127.0.0.1:9000;
            fastcgi_index index.php;
            include fastcgi.conf;
         }
        location / {
             rewrite ^/search/(.*)/([0-9]+).html$ /index.php?s=/Home-vod-search-wd-$1-p-$2 last;
             rewrite ^/play/([0-9]+)/([0-9]+)/([0-9]+).html$ /index.php?s=/Home-vod-play-id-$1-sid-$2-pid-$3 last;
             rewrite ^/vod-(.*)\.html$ /index.php?s=/Home-vod-$1 last;
             rewrite ^/news-(.*)$ /index.php?s=/Home-news-$1 last;
             rewrite ^special-(.*)$ /index.php?s=/Home-special-$1 last;
             rewrite ^/tag-(.*)$ /index.php?s=/Home-tag-$1 last;
             rewrite ^/gb-(.*)$ /index.php?s=/Home-gb-$1 last;
             rewrite ^/cm-(.*)$ /index.php?s=/Home-cm-$1 last;
             rewrite ^/map-(.*)$ /index.php?s=/Home-map-$1 last;
             rewrite ^/my-(.*)$ /index.php?s=/Home-my-$1 last;
             rewrite ^/Tpl/(.*)/Home/(.*).html$ /index.php last;
             rewrite ^/MvTop9/(.*)$ /detail/live.html last;
             rewrite ^/list/([0-9]+)/([0-9]+).html$ /index.php?s=/Home-vod-show-id-$1-p-$2 last;
            rewrite ^/channel$ /index.php?s=/Home-vod-show-id-1-p-1 last;
            rewrite ^/teleplay$ /index.php?s=/Home-vod-show-id-2-p-1 last;
           }

         location ~(favicon.ico) {
             log_not_found off;
             expires 99d;
             break;
         }

         location ~(robots.txt) {
              log_not_found off;
              expires 7d;
              break;
         }
         location ~ ^/data {
             deny all;
         }
         location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css|zip|rar)$
         {

            access_log   off;
            expires      30d;
         }
         location ~ .*\.(js|css)?$
         {

            access_log   off;
            expires      1h;
         }


          log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
              '$status $body_bytes_sent "$http_referer" '
              '"$http_user_agent" $http_x_forwarded_for';
             access_log  /ss/wws/19195_access.log  access;
              error_page  404  /404.html;
      }

 

 


    server {
        listen       80;
        server_name  www.tiaoju.com tiaoju.com;
        if ($host != 'www.tiaoju.com' ) {
           rewrite ^/(.*)$ http://www.tiaoju.com/$1 permanent;
        }
        index index.html index.htm index.php;
        root  /www/wws/tiaoju;
        error_page 404 /404.html;
        error_page 403 /404.html;
        location ~ .*\.(php|php5)?$
        {
            fastcgi_pass  127.0.0.1:9000;
            fastcgi_index index.php;
            include fastcgi.conf;
         }
        location / {
             rewrite ^/guochan$ /index.php?s=/Home-vod-show-id-15-p-1 last;
rewrite ^/tvb$ /index.php?s=/Home-vod-show-id-16-p-1 last;
rewrite ^/oumei$ /index.php?s=/Home-vod-show-id-17-p-1 last;
rewrite ^/rihan$ /index.php?s=/Home-vod-show-id-18-p-1 last;
rewrite ^/haiwai$ /index.php?s=/Home-vod-show-id-19-p-1 last;
rewrite ^/dongzuo$ /index.php?s=/Home-vod-show-id-8-p-1 last;
rewrite ^/xiju$ /index.php?s=/Home-vod-show-id-9-p-1 last;
           }

         location ~(favicon.ico) {
             log_not_found off;
             expires 99d;
             break;
         }

         location ~(robots.txt) {
              log_not_found off;
              expires 7d;
              break;
         }
         location ~ ^/data {
             deny all;
         }
         location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css|zip|rar)$
         {

            access_log   off;
            expires      30d;
         }
         location ~ .*\.(js|css)?$
         {

            access_log   off;
            expires      1h;
         }


          log_format  access23  '$remote_addr - $remote_user [$time_local] "$request" '
              '$status $body_bytes_sent "$http_referer" '
              '"$http_user_agent" $http_x_forwarded_for';
             access_log  /sss/www/tiaoju_access.log  access;
              error_page  404  /404.html;
      }
      server{
           listen 80 default;
           server_name _;
           rewrite ^(.*) http://www.19195.cn permanent;
      }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

分享到:
评论

相关推荐

    nginx实战-基于lua语言

    **Nginx实战:基于Lua语言的配置、开发与架构详解** 在现代Web服务领域,Nginx以其高性能、轻量级以及强大的反向代理和负载均衡能力而备受青睐。结合Lua语言,Nginx可以进一步提升其灵活性和功能扩展性,实现更复杂...

    Nginx实战最全教程.zip

    《Nginx实战最全教程》是一份详尽的指南,旨在帮助读者深入理解并熟练掌握Nginx服务器的配置和应用。Nginx作为一款高性能的HTTP和反向代理服务器,广泛应用于网站架构中,以其高效、稳定和灵活性而备受青睐。本教程...

    nginx实战-nginx

    第1章 Nginx简介.pdf第2章 Nginx服务器的安装与配置.pdf第3章 Nginx的基本配置与优化.pdf第4章 Nginx与PHP(FastCGI)的安装、配置与优化.pdf第5章 Nginx与JSP、ASP.NET、Perl的安装与配置.pdf第6章 Nginx HTTP负载...

    NGINX实战--web实战

    【标题】:“NGINX实战--web实战” 【描述】中的“当今最火的FREE数据库软件Nginx”实际上存在一些误解,Nginx并非数据库软件,而是一款高性能的HTTP和反向代理服务器,同时也是一款邮件协议服务器。Nginx以其轻量...

    nginx实战-张晏

    【Nginx实战详解】 Nginx是一款高性能的HTTP和反向代理服务器,同时也是一款邮件代理服务器,广泛应用于各类互联网企业,尤其在高并发场景下表现出色。本套资料主要围绕"张晏"的讲解,涵盖了从基础到高级的Nginx...

    Nginx实战经验技巧大全.docx

    Nginx实战经验技巧大全

    实战nginx.pdf

    实战nginx.pdf。主要内容包括:第1章 Nginx简介;第2章Nginx服务器安装与配置;第3章Nginx基本配置与优化;第4章Nginx与PHP;第5章Nginx与JSP、ASP.NET..第6章Nginx http负载均衡和反向代理;第7章Nginx 的rewrite...

    高并发系统架构(LVS负载均衡、Nginx、共享存储、队列缓存)08.Nginx实战进阶 共27页.pptx

    共16页.pptx06.LVS深入及NAT集群调试 共20页.pptx07.Nginx反向代理实战 共14页.pptx08.Nginx实战进阶 共27页.pptx09.Nginx动静分离URL转发实战 共16页.pptx10.NFS共享文件系统实战 共14页.pptx11.动态内容静态化加速...

    Nginx实战进阶.pptx

    **Nginx实战进阶——负载均衡策略详解** 在现代Web服务中,Nginx作为一款高性能的HTTP和反向代理服务器,广泛应用于网站的负载均衡配置中。它能够有效地分发请求到多个后端服务器,提高系统的可用性和响应速度。本...

    第八讲Nginx实战进阶.pptx

    ### Nginx实战进阶知识点概述 #### 一、Nginx调度策略 Nginx是一种高性能的HTTP和反向代理Web服务器,它以其高效、稳定、丰富的功能、简单的配置和低资源消耗等特点受到广大用户的青睐。在Nginx中,通过`upstream`...

    计算机后端-PHP视频教程. Nginx-01Nginx实战.doc

    计算机后端-PHP视频教程. Nginx-01Nginx实战.doc

    Nginx实战配置

    Nginx实战配置,里面罗列了本文博客中的叙述点 http://blog.csdn.net/shuzui1985/article/details/8581755

    实战Nginx~~~

    ### 实战Nginx:取代Apache的高性能Web服务器 #### Nginx简介 Nginx是一款轻量级的Web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,由俄罗斯的程序设计师Igor Sysoev所开发。自2004年公开发布以来,...

    【面试资料】-(机构内训资料)Nginx实战书籍.zip

    【面试资料】-(机构内训资料)Nginx实战书籍

    实战Nginx-PDF版.zip

    主要内容包括:第1章 Nginx简介;第2章Nginx服务器安装与配置;第3章Nginx基本配置与优化;第4章Nginx与PHP;第5章Nginx与JSP、ASP.NET..第6章Nginx http负载均衡和反向代理;第7章Nginx 的rewrite规则与实例;第8章...

    Nginx实战:取代Apache的高性能Web服务器

    第1章 Nginx简介 第2章 Nginx服务器的安装与配置 第3章 Nginx的基本配置与优化 第4章 Nginx与PHP(FastCGI)的安装、配置与优化 第5章 Nginx与JSP、ASP.NET、Perl的安装与配置 第6章 Nginx HTTP负载均衡和反向代理的...

    实战Nginx取代Apache的高性能Web服务器_文字版

    本实战指南旨在探讨如何通过Nginx实现高性能的Web服务,以提升网站的响应速度和稳定性。 一、Nginx与Apache的性能对比 1. 并发处理:Nginx采用异步非阻塞I/O模型,可以同时处理大量并发请求,而Apache则采用多进程...

Global site tag (gtag.js) - Google Analytics