Nginx基礎配置說明

來源:互聯網
上載者:User


user  nfsnobody nfsnobody;  #使用的使用者和組 
worker_processes 8;  #指定工作繁衍的處理序數 
error_log /usr/local/web/nginx.0.8.15/nginx_error.log  crit; #日誌記錄的檔案地址 
pid  /usr/local/web/nginx.0.8.15/nginx.pid; #進行PID存放的路勁 
worker_rlimit_nofile 65535;  #最大檔案描述符 
events 

  use epoll; #使用事件模型,一般Linux2.6+使用epoll模型 
  worker_connections 65535; #最大連結數 

http 

  include      mime.types;    
  default_type application/octet-stream; 
  server_names_hash_bucket_size 128; #hash_table 
  client_header_buffer_size 32k; #要求標頭部的緩衝大小 
  large_client_header_buffers 4 32k; #最大的要求標頭部緩衝大小 
  client_max_body_size 8m; #用戶端最大請求 8M 
  sendfile on; #傳輸檔案 
  tcp_nopush    on; 
  keepalive_timeout 60; #60秒逾時 
  tcp_nodelay on; 
  fastcgi_connect_timeout 300;#以下fastcgi模組配置 
  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; 
  gzip on; #以下gzip模組配置 
  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.test2.com; #host名稱 
    index index.html index.htm index.php; #預設訪問的首頁 
root  /usr/local/web/www/; #檔案目錄 
error_page 404 403  http://admin.test.com/404.htm; #預設404頁面 
    location ~ .*\.(php|php5)?$   #php cgi模組 
    { 
      #fastcgi_pass  unix:/tmp/php-cgi.sock; 
      fastcgi_pass  127.0.0.1:9000; 
      fastcgi_index index.php; 
      include fcgi.conf; 
    } 
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ 

      expires      30d; 
    } 
   location /       #URL重寫模組 
    { 
      index index.php; 
      if (!-f $request_filename){ 
              rewrite (.*) /admin.php; 
          } 
      try_files $uri $uri/ /index.html; 
    } 
    location ~ .*\.(js|css)?$ 
    { 
      expires      1h; 
    } 
    #以下是log模組-記錄nginx日誌 
    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 /usr/local/web/nginx.0.8.15/logs/access.log  access; 
      } 

作者:initphp

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.