nginx配置说明

  1 #user  nobody;
  2 worker_processes  1;
  3 
  4 #error_log  logs/error.log;
  5 #error_log  logs/error.log  notice;
  6 #error_log  logs/error.log  info;
  7 
  8 #pid        logs/nginx.pid;
  9 
 10 
 11 events {
 12     worker_connections  1024;
 13 }
 14 
 15 
 16 http {
 17     include       mime.types;
 18     default_type  application/octet-stream;
 19 
 20     log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
 21                       '$status $body_bytes_sent "$http_referer" '
 22                       '"$http_user_agent" "$http_x_forwarded_for"';
 23 
 24     access_log  logs/access.log  main;
 25 
 26     sendfile        on;
 27     #tcp_nopush     on;
 28 
 29     #keepalive_timeout  0;
 30     keepalive_timeout  65;
 31 
 32 ####################################begin###################################################
 33     #gzip  on;
 34 ##        gzip on;
 35 ##        gzip_http_version 1.1;
 36 ##        gzip_comp_level 2;
 37 ##        gzip_types    text/plain text/html text/css
 38 ##                      application/x-javascript text/xml
 39 ##                      application/xml application/xml+rss
 40 ##                      text/javascript;
 41 #####################################################end####################################
 42 
 43     server {
 44         listen       80;
 45         server_name  localhost;
 46 
 47         #charset koi8-r;
 48 
 49         #access_log  logs/host.access.log  main;
 50 
 51         location / {
 52             root   html;
 53             index  index.html index.htm;
 54         }
 55 
 56         error_page  404              /404.html;
 57 
 58         # redirect server error pages to the static page /50x.html
 59         #
 60         error_page   500 502 503 504  /50x.html;
 61         location = /50x.html {
 62             root   html;
 63         }
 64 
 65         # proxy the PHP scripts to Apache listening on 127.0.0.1:80
 66         #
 67         location ~ \.asp$ {
 68             proxy_pass   http://10.1.78.12:8080;
 69         }
 70         location ~ \.php$ {
 71             proxy_pass   http://10.1.78.12:8090;
 72         proxy_set_header  X-Forwarded-For $remote_addr;
 73         }
 74 
 75         # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
 76         #
 77         #location ~ \.php$ {
 78         #    root           html;
 79         #    fastcgi_pass   127.0.0.1:9000;
 80         #    fastcgi_index  index.php;
 81         #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
 82         #    include        fastcgi_params;
 83         #}
 84 
 85         # deny access to .htaccess files, if Apache's document root
 86         # concurs with nginx's one
 87         #
 88         #location ~ /\.ht {
 89         #    deny  all;
 90         #}
 91     }
 92 
 93 
 94     # another virtual host using mix of IP-, name-, and port-based configuration
 95     #
 96     #server {
 97     #    listen       8000;
 98     #    listen       somename:8080;
 99     #    server_name  somename  alias  another.alias;
100 
101     #    location / {
102     #        root   html;
103     #        index  index.html index.htm;
104     #    }
105     #}
106 
107 
108     # HTTPS server
109     #
110     #server {
111     #    listen       443 ssl;
112     #    server_name  localhost;
113 
114     #    ssl_certificate      cert.pem;
115     #    ssl_certificate_key  cert.key;
116 
117     #    ssl_session_cache    shared:SSL:1m;
118     #    ssl_session_timeout  5m;
119 
120     #    ssl_ciphers  HIGH:!aNULL:!MD5;
121     #    ssl_prefer_server_ciphers  on;
122 
123     #    location / {
124     #        root   html;
125     #        index  index.html index.htm;
126     #    }
127     #}
128 
129 }
View Code

 

posted @ 2015-04-30 00:07  cncyber  阅读(283)  评论(0编辑  收藏  举报