http://blog.csdn.net/marising/article/details/3979493

可以参考如下的完整例子

http://wiki.codemongers.com/NginxFullExample

  1. #用户 用户组
  2. user       www www;
  3. #工作进程,根据硬件调整,有人说几核cpu,就配几个,我觉得可以多一点
  4. worker_processes  5;
  5. #错误日志
  6. error_log  logs/error.log;
  7. #pid文件位置
  8. pid        logs/nginx.pid;
  9. worker_rlimit_nofile 8192;
  10. events {
  11. #工作进程的最大连接数量,根据硬件调整,和前面工作进程配合起来用,尽量大,但是别把cpu跑到100%就行
  12. worker_connections  4096;
  13. }
  14. http {
  15. include    conf/mime.types;
  16. #反向代理配置,可以打开proxy.conf看看
  17. include    /etc/nginx/proxy.conf;
  18. #fastcgi配置,可以打开fastcgi.conf看看
  19. include    /etc/nginx/fastcgi.conf;
  20. default_type application/octet-stream;
  21. #日志的格式
  22. log_format   main '$remote_addr - $remote_user [$time_local] $status '
  23. '"$request" $body_bytes_sent "$http_referer" '
  24. '"$http_user_agent" "$http_x_forwarded_for"';
  25. #访问日志
  26. access_log   logs/access.log  main;
  27. sendfile     on;
  28. tcp_nopush   on;
  29. #根据实际情况调整,如果server很多,就调大一点
  30. server_names_hash_bucket_size 128; # this seems to be required for some vhosts
  31. #这个例子是fastcgi的例子,如果用fastcgi就要仔细看
  32. server { # php/fastcgi
  33. listen       80;
  34. #域名,可以有多个
  35. server_name  domain1.com www.domain1.com;
  36. #访问日志,和上面的级别不一样,应该是下级的覆盖上级的
  37. access_log   logs/domain1.access.log  main;
  38. root         html;
  39. location / {
  40. index    index.html index.htm index.php;
  41. }
  42. #所有php后缀的,都通过fastcgi发送到1025端口上
  43. #上面include的fastcgi.conf在此应该是有作用,如果你不include,那么就把fastcgi.conf的配置项放在这个下面。
  44. location ~ /.php$ {
  45. fastcgi_pass   127.0.0.1:1025;
  46. }
  47. }
  48. #这个是反向代理的例子
  49. server { # simple reverse-proxy
  50. listen       80;
  51. server_name  domain2.com www.domain2.com;
  52. access_log   logs/domain2.access.log  main;
  53. #静态文件,nginx自己处理
  54. location ~ ^/(images|javascript|js|css|flash|media|static)/  {
  55. root    /var/www/virtual/big.server.com/htdocs;
  56. #过期30天,静态文件不怎么更新,过期可以设大一点,如果频繁更新,则可以设置得小一点。
  57. expires 30d;
  58. }
  59. #把请求转发给后台web服务器,反向代理和fastcgi的区别是,反向代理后面是web服务器,fastcgi后台是fasstcgi监听进程,当然,协议也不一样。
  60. location / {
  61. proxy_pass      http://127.0.0.1:8080;
  62. }
  63. }
  64. #upstream的负载均衡,weight是权重,可以根据机器配置定义权重。据说nginx可以根据后台响应时间调整。后台需要多个web服务器。
  65. upstream big_server_com {
  66. server 127.0.0.3:8000 weight=5;
  67. server 127.0.0.3:8001 weight=5;
  68. server 192.168.0.1:8000;
  69. server 192.168.0.1:8001;
  70. }
  71. server {
  72. listen          80;
  73. server_name     big.server.com;
  74. access_log      logs/big.server.access.log main;
  75. location / {
  76. proxy_pass      http://big_server_com;
  77. }
  78. }
  79. }

上面说的include的几个文件,都没有必要改,用的时候include一下就可以。

fastcgi.conf

  1. # fastcgi.conf
  2. fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
  3. fastcgi_param  QUERY_STRING       $query_string;
  4. fastcgi_param  REQUEST_METHOD     $request_method;
  5. fastcgi_param  CONTENT_TYPE       $content_type;
  6. fastcgi_param  CONTENT_LENGTH     $content_length;
  7. fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
  8. fastcgi_param  REQUEST_URI        $request_uri;
  9. fastcgi_param  DOCUMENT_URI       $document_uri;
  10. fastcgi_param  DOCUMENT_ROOT      $document_root;
  11. fastcgi_param  SERVER_PROTOCOL    $server_protocol;
  12. fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
  13. fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;
  14. fastcgi_param  REMOTE_ADDR        $remote_addr;
  15. fastcgi_param  REMOTE_PORT        $remote_port;
  16. fastcgi_param  SERVER_ADDR        $server_addr;
  17. fastcgi_param  SERVER_PORT        $server_port;
  18. fastcgi_param  SERVER_NAME        $server_name;
  19. fastcgi_index  index.php;
  20. # PHP only, required if PHP was built with --enable-force-cgi-redirect
  21. fastcgi_param  REDIRECT_STATUS    200;

proxy.conf

  1. # proxy.conf
  2. proxy_redirect          off;
  3. proxy_set_header        Host            $host;
  4. proxy_set_header        X-Real-IP       $remote_addr;
  5. proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
  6. client_max_body_size    10m;
  7. client_body_buffer_size 128k;
  8. proxy_connect_timeout   90;
  9. proxy_send_timeout      90;
  10. proxy_read_timeout      90;
  11. proxy_buffers           32 4k;

mine.types

  1. # mime.types
  2. types {
  3. text/html                             html htm shtml;
  4. text/css                              css;
  5. text/xml                              xml rss;
  6. image/gif                             gif;
  7. image/jpeg                            jpeg jpg;
  8. application/x-javascript              js;
  9. text/plain                            txt;
  10. text/x-component                      htc;
  11. text/mathml                           mml;
  12. image/png                             png;
  13. image/x-icon                          ico;
  14. image/x-jng                           jng;
  15. image/vnd.wap.wbmp                    wbmp;
  16. application/java-archive              jar war ear;
  17. application/mac-binhex40              hqx;
  18. application/pdf                       pdf;
  19. application/x-cocoa                   cco;
  20. application/x-java-archive-diff       jardiff;
  21. application/x-java-jnlp-file          jnlp;
  22. application/x-makeself                run;
  23. application/x-perl                    pl pm;
  24. application/x-pilot                   prc pdb;
  25. application/x-rar-compressed          rar;
  26. application/x-redhat-package-manager  rpm;
  27. application/x-sea                     sea;
  28. application/x-shockwave-flash         swf;
  29. application/x-stuffit                 sit;
  30. application/x-tcl                     tcl tk;
  31. application/x-x509-ca-cert            der pem crt;
  32. application/x-xpinstall               xpi;
  33. application/zip                       zip;
  34. application/octet-stream              deb;
  35. application/octet-stream              bin exe dll;
  36. application/octet-stream              dmg;
  37. application/octet-stream              eot;
  38. application/octet-stream              iso img;
  39. application/octet-stream              msi msp msm;
  40. audio/mpeg                            mp3;
  41. audio/x-realaudio                     ra;
  42. video/mpeg                            mpeg mpg;
  43. video/quicktime                       mov;
  44. video/x-flv                           flv;
  45. video/x-msvideo                       avi;
  46. video/x-ms-wmv                        wmv;
  47. video/x-ms-asf                        asx asf;
  48. video/x-mng                           mng;
  49. }

更多的,每个项的具体含义和配置选择,可以参考如下:

http://wiki.codemongers.com/NginxModules

可以依次从MainModule,Events Module,Http Core Module,Http UpStream Module的顺序看。

关于配置和模块的关系是,装了什么模块,就可以用到什么配置,因此配置是灵活多变的。

Nginx完整配置说明的更多相关文章

  1. Quartz CronTrigger最完整配置说明

    转:http://www.blogjava.net/xmatthew/archive/2009/02/15/253864.html   Quartz CronTrigger最完整配置说明 CronTr ...

  2. nginx.conf的完整配置说明

    #用户 用户组 user www www; #工作进程,根据硬件调整,有人说几核cpu,就配几个,我觉得可以多一点 worker_processes 5: #错误日志 error_log logs/e ...

  3. Nginx完整配置配置样例【官方版】

    我们主要参考nginx官方给出的完整配置的样例: https://www.nginx.com/resources/wiki/start/topics/examples/full/# 完整摘录如下: n ...

  4. centos7 nginx完整支持thinkphp pathinfo模式开启方法

    thinkphp运行在linux+nginx,如何开启pathinfo模式,我是完整测试过了,没问题的,在thinkphp配置文件 开启    'URL_MODEL'   =>  1,   1代 ...

  5. nginx相关配置说明

    基础: nginx配置文件主要分为六个区域:main section.events section.http section.sever section. location section.upstr ...

  6. nginx 常用配置说明

    一.location 配置 1.1 语法规则: location [=|~|~*|^~] /uri/ { … }= 开头表示精确匹配^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可 ...

  7. nginx的配置说明

    #定义Nginx运行的用户和用户组user www www; #nginx进程数,建议设置为等于CPU总核心数.worker_processes 8; #全局错误日志定义类型,[ debug | in ...

  8. FastDFS与Nginx的配置说明

    1.简介     FastDFS是一个开源的轻量级分布式文件系统,它对文件进行管理,功能包括:文件存储.文件同步.文件访问(文件上传.文件下载)等,解决了大容量存储和负载均衡的问题.特别适合以文件为载 ...

  9. Nginx 完整安装篇

    第一步安装各种编译库如c++编译库等 yum install -y gcc //安装GCC ...安装过程省略 yum install -y gcc-c++ //安装C++库用来编译c++ ...安装 ...

随机推荐

  1. 在安卓下使用python连接蓝牙串口模块(HC-06)

    在安卓上安装Python: 请参考:https://github.com/kuri65536/python-for-android/blob/master/README.md下载程序文件需要访问 ht ...

  2. Android端手机测试体系

    1.冒烟测试 跟web端的测试流程一样,你拿到一个你们开发做出来的apk首先得去冒烟,也就是保证他的稳定性,指定时间内不会崩溃.这款原生sdk自带的monkey可以当做我们的测试工具.就跟我之前博客所 ...

  3. dede版权信息修改

    login:dede-templets-login.htm 系统主页:dede-templets-index2.htm 主体内容在index_body.htm文件   干掉: $(function() ...

  4. N_F1_APPROVE

    package nc.bs.pub.action; import java.util.ArrayList; import java.util.Hashtable; import java.util.L ...

  5. 【转】prototype扩展的JavaScript常用函数库

    Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> ...

  6. Android通过tcpdump抓包(wifi, 2g, 3g都可以)

    http://blog.csdn.net/deng529828/article/details/20646197 1. 手机要有root权限 2. 下载tcpdump   http://www.str ...

  7. mysql关键字讲解(join 、order by、group by、having、distinct)

    1.join     1.1 OUTER JOIN:想要包含右侧表中的所有行,以及左侧表中有匹配记录的行.        1.11 Mysql中有左连接(left join):            ...

  8. ODBC连接MySQL出现"E_FAIL"错误

    ODBC不能处理这种格式的数据:0000-00-00,将其更新为正常的时间即可解决

  9. ### CUDA

    CUDA Learning. #@author: gr #@date: 2014-04-06 #@email: forgerui@gmail.com 1. Introduction CPU和GPU的区 ...

  10. IOS开发之NSObject协议类方法说明

    oc中NSObject类是所有类的基类,所有类都要继承自它,那么它的方法就显得特别重要,因为所有类都会有这些基本的方法. 看看oc的源码中NSObject是这样定义的: @interface NSOb ...