nginx的使用(2)—— nginx配置文件详解

nginx配置文件详解

  1. ######## Nginx的main(全局配置)文件
  2. #指定nginx运行的用户及用户组,默认为nobody
  3. #user nobody;
  4. #开启的线程数,一般跟逻辑CPU核数一致
  5. worker_processes 1;
  6. #定位全局错误日志文件,级别以notice显示,还有debug,info,warn,error,crit模式,debug输出最多,crir输出最少,根据实际环境而定
  7. #error_log logs/error.log;
  8. #error_log logs/error.log notice;
  9. #error_log logs/error.log info;
  10. #指定进程id的存储文件位置
  11. #pid logs/nginx.pid;
  12. #指定一个nginx进程打开的最多文件描述符数目,受系统进程的最大打开文件数量限制
  13. #worker_rlimit_nofile 65535
  14. events {
  15. #设置工作模式为epoll,除此之外还有select,poll,kqueue,rtsig和/dev/poll模式
  16. #use epoll;
  17. #定义每个进程的最大连接数,受系统进程的最大打开文件数量限制。
  18. worker_connections 1024;
  19. }
  20. #######Nginx的Http服务器配置,Gzip配置
  21. http {
  22. #主模块指令,实现对配置文件所包含的文件的设定,可以减少主配置文件的复杂度,DNS主配置文件中的zonerfc1912,acl基本上都是用include语句。
  23. include mime.types;
  24. #核心模块指令,智力默认设置为二进制流,也就是当文件类型未定义时使用这种方式
  25. default_type application/octet-stream;
  26. #下面代码为日志格式的设定,main为日志格式的名称,可自行设置,后面引用
  27. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  28. # '$status $body_bytes_sent "$http_referer" '
  29. # '"$http_user_agent" "$http_x_forwarded_for"';
  30. #引用日志main
  31. #access_log logs/access.log main;
  32. #设置允许客户端请求的最大的单个文件字节数
  33. #client_max_body_size 20M;
  34. #指定来自客户端请求头的headebuffer大小
  35. #client_header_buffer_size 32k;
  36. #指定连接请求试图写入缓存文件的目录路径
  37. #client_body_temp_path /dev/shm/client_body_temp;
  38. #指定客户端请求中较大的消息头的缓存最大数量和大小,目前设置为4个32KB
  39. #large client_header_buffers 4 32k;
  40. #开启高效文件传输模式
  41. sendfile on;
  42. #开启防止网络阻塞
  43. #tcp_nopush on;
  44. #开启防止网络阻塞
  45. #tcp_nodelay on;
  46. #设置客户端连接保存活动的超时时间
  47. #keepalive_timeout 0;
  48. keepalive_timeout 65;
  49. #设置客户端请求读取超时时间
  50. #client_header_timeout 10;
  51. #设置客户端请求主体读取超时时间
  52. #client_body_timeout 10;
  53. #用于设置相应客户端的超时时间
  54. #send_timeout
  55. ####HttpGZip模块配置
  56. #httpGzip modules
  57. #开启gzip压缩
  58. #gzip on;
  59. #设置允许压缩的页面最小字节数
  60. #gzip_min_length 1k;
  61. #申请4个单位为16K的内存作为压缩结果流缓存
  62. #gzip_buffers 4 16k;
  63. #设置识别http协议的版本,默认为1.1
  64. #gzip_http_version 1.1;
  65. #指定gzip压缩比,1-9数字越小,压缩比越小,速度越快
  66. #gzip_comp_level 2;
  67. #指定压缩的类型
  68. #gzip_types text/plain application/x-javascript text/css application/xml;
  69. #让前端的缓存服务器进过gzip压缩的页面
  70. #gzip_vary on;
  71. #########Nginx的server虚拟主机配置
  72. server {
  73. #监听端口为 80
  74. listen 80;
  75. #设置主机域名
  76. server_name localhost;
  77. #设置访问的语言编码
  78. #charset koi8-r;
  79. #设置虚拟主机访问日志的存放路径及日志的格式为main
  80. #access_log logs/host.access.log main;
  81. #设置虚拟主机的基本信息
  82. location / {
  83. #设置虚拟主机的网站根目录
  84. root html;
  85. #设置虚拟主机默认访问的网页
  86. index index.html index.htm;
  87. }
  88. #error_page 404 /404.html;
  89. # redirect server error pages to the static page /50x.html
  90. #
  91. error_page 500 502 503 504 /50x.html;
  92. location = /50x.html {
  93. root html;
  94. }
  95. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  96. #
  97. #location ~ \.php$ {
  98. # proxy_pass http://127.0.0.1;
  99. #}
  100. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  101. #
  102. #location ~ \.php$ {
  103. # root html;
  104. # fastcgi_pass 127.0.0.1:9000;
  105. # fastcgi_index index.php;
  106. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  107. # include fastcgi_params;
  108. #}
  109. # deny access to .htaccess files, if Apache's document root
  110. # concurs with nginx's one
  111. #
  112. #location ~ /\.ht {
  113. # deny all;
  114. #}
  115. }
  116. # another virtual host using mix of IP-, name-, and port-based configuration
  117. #
  118. #server {
  119. # listen 8000;
  120. # listen somename:8080;
  121. # server_name somename alias another.alias;
  122. # location / {
  123. # root html;
  124. # index index.html index.htm;
  125. # }
  126. #}
  127. # HTTPS server
  128. #
  129. #server {
  130. # listen 443 ssl;
  131. # server_name localhost;
  132. # ssl_certificate cert.pem;
  133. # ssl_certificate_key cert.key;
  134. # ssl_session_cache shared:SSL:1m;
  135. # ssl_session_timeout 5m;
  136. # ssl_ciphers HIGH:!aNULL:!MD5;
  137. # ssl_prefer_server_ciphers on;
  138. # location / {
  139. # root html;
  140. # index index.html index.htm;
  141. # }
  142. #}
  143. }