• Nginx -- nginx.conf 配置文件详讲


    Nginx服务器配置,nginx.conf文件代码详讲,结合不同楼主的博文得到:

      1 #关掉访问日志可以优化服务器
      2 
      3 #定义Nginx运行的用户和用户组
      4 #user  nobody;
      5 
      6 #nginx进程数
      7 #如果NginX提供了SLL或者gzip,对cpu的使用率较高,且系统有两个以上的cpu
      8 #可设置为等于cpu总核心数
      9 worker_processes  1;
     10 
     11 #设置最大打开文件数的限制
     12 worker_rlimit_nofile 65535;S
     13 
     14 #error_log  x:/xxxxx/xxxx/log/error.log;
     15 #error_log  logs/error.log  notice;
     16 #error_log  logs/error.log  info;
     17 
     18 #进程文件
     19 pid        logs/nginx.pid;
     20 
     21 #Nginx的事件模块,用于控制Nginx如何处理连接,参数会影响性能,慎重设置。
     22 events {
     23     #单个后台worker process进程的最大并发链接数
     24     #书本建议值为 65535 
     25     worker_connections  1024;
     26     #woker_connections 65535;
     27     # 并发总数是 worker_processes 和 worker_connections 的乘积
     28     # 即 max_clients = worker_processes * worker_connections
     29     # 在设置了反向代理的情况下,max_clients = worker_processes * worker_connections / 4  为什么
     30     # 为什么上面反向代理要除以4,应该说是一个经验值
     31     # 根据以上条件,正常情况下的Nginx Server可以应付的最大连接数为:4 * 8000 = 32000
     32     # worker_connections 值的设置跟物理内存大小有关
     33     # 因为并发受IO约束,max_clients的值须小于系统可以打开的最大文件数
     34     # 而系统可以打开的最大文件数和内存大小成正比,一般1GB内存的机器上可以打开的文件数大约是10万左右
     35     # 我们来看看360M内存的VPS可以打开的文件句柄数是多少:
     36     # $ cat /proc/sys/fs/file-max
     37     # 输出 34336
     38     # 32000 < 34336,即并发连接总数小于系统可以打开的文件句柄总数,这样就在操作系统可以承受的范围之内
     39     # 所以,worker_connections 的值需根据 worker_processes 进程数目和系统可以打开的最大文件总数进行适当地进行设置
     40     # 使得并发总数小于操作系统可以打开的最大文件数目
     41     # 其实质也就是根据主机的物理CPU和内存进行配置
     42     # 当然,理论上的并发总数可能会和实际有所偏差,因为主机还有其他的工作进程需要消耗系统资源。
     43     # ulimit -SHn 65535
     44 }
     45 
     46 
     47 
     48 
     49 #Nginx的HTTP内核模块,设定http服务器
     50 http {
     51     #文件扩展名与文件类型映射表
     52     include       mime.types;
     53     #默认文件类型
     54     default_type  application/octet-stream;
     55     #默认编码
     56     #charset utf-8; 
     57 
     58     #隐藏Nginx版本号
     59     #server_tokens off
     60 
     61    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
     62                       '$status $body_bytes_sent "$http_referer" '
     63                       '"$http_user_agent" "$http_x_forwarded_for"';
     64 
     65     #access_log  x:/xxxx/xxxx/log/access.log  main;
     66     #关闭日志
     67     #access_log off;
     68     #开启高效文件传输模式,sendfile指令指定nginx是否调用sendfile函数来输出文件
     69     #对于普通应用设为 on,
     70     #如果用来进行下载等应用磁盘IO重负载应用,可设置为off,以平衡磁盘与网络I/O处理速度,降低系统的负载。
     71     #注意:如果图片显示不正常把这个改成off。
     72     sendfile        on;
     73     #tcp_nopush     on;
     74 
     75     #keepalive_timeout  0;
     76     keepalive_timeout  60;
     77 
     78 
     79     #启用gzip压缩功能
     80     #gzip  on;
     81     #用于设置响应体的最小长度,单位为字节。
     82     #gzip_min_length 1000;
     83     #设置启用或禁用从代理服务器上收到的响应体Gzip压缩功能
     84     # expired---如果Expires header阻止缓存,那么启用压缩
     85     # auth -----假如设置了Authorization header,则启用压缩
     86     #gzip_proxied expired no-cache no-store private auth;
     87     #gzip_types text/plain application/xml;
     88     #gzip_disable "MSIE [1-6].";
     89 
     90     #用于指定客户端请求体的最大值。超过将收到413错误
     91     client_max_body_size       16m;
     92     #指定客户端请求体缓存的大小。
     93     #入股请求体大于该缓存大小,那么整个请求体或者请求体的某些部分会被写入临时文件
     94     #默认值 8k/16k
     95     #默认值等于两页面的大小,页面的大小依赖于所在的操作系统
     96     client_body_buffer_size    256k;
     97     proxy_temp_file_write_size 128k;
     98     proxy_temp_path  x:/xxx/xxxxx/public;
     99     #levels设置目录层次
    100     #keys_zone设置缓存名字和共享内存大小
    101     #inactive在指定时间内没人访问则被删除在这里是1天
    102     #max_size最大缓存空间
    103     #proxy_cache_path x:/xxxx/xxx/cache levels=1:2 keys_zone=cache_one:256m inactive=2d max_size=300m;
    104 
    105 
    106 
    107 
    108     upstream mywebapp_thin 
    109     {
    110     #指定服务器组的负载均衡方法,请求基于客户端的IP地址在服务器间进行分发。 
    111     #IPv4地址的前三个字节或者IPv6的整个地址,会被用来作为一个散列key。 
    112     #这种方法可以确保从同一个客户端过来的请求,会被传给同一台服务器。
    113     #除了当服务器被认为不可用的时候,这些客户端的请求会被传给其他服务器,
    114     #而且很有可能也是同一台服务器。
    115     #如果使用了该指明,那么将会导致客户端的请求以客户端的IP地址分配在upstream中的server之间。
    116     #它的关健技术在于对这个请求客户但ip地址进行哈希计算
    117     #这种方法保证了客户端请求总是能够传递到同一台后台服务器,但是如果该服务器被认定为无效,
    118     #那么这个客户端的请求将会被传递到其他服务器。
    119     #可以高概率将客户端请求总是连接到同一台服务器
    120     #如果使用这个指令,就不可以使用权重。
    121     ip_hash;
    122     #upstream的负载均衡,weight是权重,可以根据机器配置定义权重。
    123     #weigth参数表示权值,权值越高被分配到的几率越大。
    124     #如果服务器要移除,在 ip后加个down
    125     #backup表示备用
    126     server 127.0.0.1:3000;
    127     server 127.0.0.1:3001 down;
    128     }
    129 
    130 
    131 
    132     #设定虚拟主机配置
    133     server {
    134         #监听端口
    135         listen       80 default_server;
    136         #定义使用 localhost访问
    137         #域名可以有多个,用空格隔开
    138         #将进入的HTTP请求的主机头(Host header)与Nginx配置文件中各个Server{...}区段比较
    139         #并且选择第一个被匹配的server区段——。
    140         #服务器名字按照一下顺序处理:
    141         #1.全域名,静态域名
    142         #2.开始部分使用通配符的域名,例如:*.exmple.com
    143         #3.结尾部分使用通配符的域名,例如:www.example.*
    144         #4.带有正则表达式的域名。
    145         server_name  localhost;
    146 
    147         #默认编码
    148         #charset koi8-r;
    149 
    150         #rewrite_log on;
    151 
    152         #设定本虚拟主机的访问日志
    153         #access_log  logs/host.access.log  main;
    154         #access_log  x:/xxx/xxx/log/host.access.log;
    155 
    156         root   x:/xxx/xxx/public;
    157 
    158 
    159 
    160         #图片缓存时间设置
    161         #location ~* ^/(images|javascripts|stylesheets|img)/ 
    162         #location ~* .(gif|jpg|jpeg|png|bmp|swf)$ 
    163         #{
    164         #    root   x:/xx/xxx/public;
    165         #    access_log    off;
    166         #    log_not_found off;
    167         #    expires       max;
    168 
    169             #通过key来hash,定义KEY的值
    170         #    proxy_cache_key      $host$uri$is_args$args;
    171             #根keys_zone后的内容对应
    172         #    proxy_cache         cache_one;
    173             #哪些状态缓存多长时间
    174         #    proxy_cache_valid    200 302 7d;
    175             #其他的缓存多长时间
    176         #    proxy_cache_valid    301 3d;
    177         #    proxy_cache_valid    any 1m;
    178 
    179         #   if (!-f $request_filename) {
    180         #    proxy_pass http://mywebapp_thin;
    181         #    break;
    182         #    } 
    183         #break;
    184         #}
    185 
    186         #允许根据URI的需要进行配置访问
    187         #可以跟进字面字符串配置也可以根据正则表达式配置
    188         #如果使用正则表达式配置,必须使用一下前缀
    189         # “~” 区分大小写匹配
    190         # “~*” 不区分大小写
    191         #先按照字面字符串检测,然后再正则表达式,正则表达式
    192         #默认请求,对 "/" 启用反向代理
    193         location / {
    194             #定义了一个请求的根文档目录
    195             root   x:/xxx/xxx/public;
    196             #定义首页索引文件的名称
    197             index  index.html index.htm;
    198             if (!-f $request_filename) {
    199             proxy_pass http://mywebapp_thin;
    200              break;
    201             } 
    202             proxy_redirect off;
    203             proxy_set_header X-Real-IP $remote_addr;
    204             #后端的Web服务器可以通过X-Forwarded-For获取用户真实IP
    205             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    206             #以下是一些反向代理的配置,可选。
    207             proxy_set_header Host $host;
    208             #允许客户端请求的最大单文件字节数
    209             client_max_body_size 10m; 
    210             #缓冲区代理缓冲用户端请求的最大字节数,
    211             client_body_buffer_size 128k; 
    212             #nginx跟后端服务器连接超时时间(代理连接超时)
    213             proxy_connect_timeout 90; 
    214             #后端服务器数据回传时间(代理发送超时)
    215             proxy_send_timeout 90;
    216             #连接成功后,后端服务器响应时间(代理接收超时) 
    217             proxy_read_timeout 90; 
    218             #设置代理服务器(nginx)保存用户头信息的缓冲区大小
    219             proxy_buffer_size 4k; 
    220             #proxy_buffers缓冲区,网页平均在32k以下的设置
    221             proxy_buffers 4 32k;
    222             #代理的时候,开启或关闭缓冲后端服务器的响应。 
    223             proxy_buffering on;
    224             #高负荷下缓冲大小(proxy_buffers*2)
    225             proxy_busy_buffers_size 64k; 
    226             #设定缓存文件夹大小,大于这个值,将从upstream服务器传
    227             proxy_temp_file_write_size 64k;
    228 
    229               #通过key来hash,定义KEY的值
    230         #    proxy_cache_key      $host$uri$is_args$args;
    231             #根keys_zone后的内容对应
    232         #    proxy_cache         cache_one;
    233             #哪些状态缓存多长时间
    234         #    proxy_cache_valid    200 302 7d;
    235             #其他的缓存多长时间
    236         #    proxy_cache_valid    301 3d;
    237         #    proxy_cache_valid    any 1m;
    238         }
    239 
    240 
    241         #指定一个uri,在访问出错的时候会显示的页面
    242         #error_page  404              /404.html;
    243 
    244         # redirect server error pages to the static page /50x.html
    245         #
    246         # 定义错误提示页面
    247         error_page   500 502 503 504  /50x.html;
    248         location = /50x.html {
    249             root   html;
    250         }
    251 
    252         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    253         #
    254         #location ~ .php$ {
    255         #    proxy_pass   http://127.0.0.1;
    256         #}
    257 
    258         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    259         #
    260         #location ~ .php$ {
    261         #    root           html;
    262         #    fastcgi_pass   127.0.0.1:9000;
    263         #    fastcgi_index  index.php;
    264         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    265         #    include        fastcgi_params;
    266         #}
    267 
    268         # deny access to .htaccess files, if Apache's document root
    269         # concurs with nginx's one
    270         #
    271         #location ~ /.ht {
    272         #    deny  all;
    273         #}
    274 
    275         #图片缓存时间设置
    276         #location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
    277         #{
    278         #    expires 10d;
    279         #}  
    280         #JS和CSS缓存时间设置
    281         #location ~ .*.(js|css)?$
    282         #{
    283         #    expires 1h;
    284         #}
    285 
    286         #FastCGI相关参数是为了改善网站的性能:减少资源占用,提高访问速度。
    287         fastcgi_connect_timeout 300;
    288         fastcgi_send_timeout 300;
    289         fastcgi_read_timeout 300;
    290         fastcgi_buffer_size 64k;
    291         fastcgi_buffers 4 64k;
    292         fastcgi_busy_buffers_size 128k;
    293         fastcgi_temp_file_write_size 128k;
    294     }
    295 
    296 
    297     # another virtual host using mix of IP-, name-, and port-based configuration
    298     #
    299     #server {
    300     #    listen       8000;
    301     #    listen       somename:8080;
    302     #    server_name  somename  alias  another.alias;
    303 
    304     #    location / {
    305     #        root   html;
    306     #        index  index.html index.htm;
    307     #    }
    308     #}
    309 
    310 
    311     # HTTPS server
    312     #
    313     #server {
    314     #    listen       443 ssl;
    315     #    server_name  localhost;
    316 
    317     #    ssl_certificate      cert.pem;
    318     #    ssl_certificate_key  cert.key;
    319 
    320     #    ssl_session_cache    shared:SSL:1m;
    321     #    ssl_session_timeout  5m;
    322 
    323     #    ssl_ciphers  HIGH:!aNULL:!MD5;
    324     #    ssl_prefer_server_ciphers  on;
    325 
    326     #    location / {
    327     #        root   html;
    328     #        index  index.html index.htm;
    329     #    }
    330     #}
    331 
    332 }

    About this:http://www.ha97.com/5194.html

  • 相关阅读:
    【JVM源码解析】模板解释器解释执行Java字节码指令(下)
    【JVM源码解析】模板解释器解释执行Java字节码指令(上)
    【超硬核】JVM源码解读:Java方法main在虚拟机上解释执行
    Airtest结合tidevice实现IOS自动化测试
    Xcode连接真机提示设备未认证或版本太旧解决方案
    Jmeter——SMTP Sampler发送邮件
    Jmeter——脱离Jenkins后,Ant集成邮件通知
    spring boot快速入门
    MyBatisPlus 快速入门
    VS 查看引用的DLL/Nuget包源码时,无法看到注释
  • 原文地址:https://www.cnblogs.com/lmei/p/3370871.html
Copyright © 2020-2023  润新知