nginx与node结合配置

#user  nobody;
#工作的子进程数量(通常等于CPU数量或者2倍于CPU)
worker_processes  2;



pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {  
    include       mime.types;  
    default_type  application/octet-stream;  
  
        #定义日志格式  
    #log_format  main  '$remote_addr - $remote_user [$time_local] $request '  
    #                  '"$status" $body_bytes_sent "$http_referer" '  
    #                  '"$http_user_agent" "$http_x_forwarded_for"';  
  
    #access_log  off;  
    access_log  logs/access.log;  
  
    client_header_timeout  3m;  
    client_body_timeout    3m;  
    send_timeout           3m;  
   
    client_header_buffer_size    1k;  
    large_client_header_buffers  4 4k;  
  
    sendfile        on;  
    tcp_nopush      on;  
    tcp_nodelay     on;

    #keepalive_timeout  75 20;  
  
     
  
    server {  
            listen       80;
            server_name  localhost;
	    #静态文件根目录所在路径
	    root E:/xxx/webroot;
	    index index;

            location / {
		proxy_connect_timeout   3; 
		proxy_send_timeout      30;  
		proxy_read_timeout      30;
		#动态请求则转给http://127.0.0.1:3000/处理
		proxy_pass http://127.0.0.1:3000/;  
            }
            location ~ .*\.(htm|html|gif|jpg|jpeg|png|bmp|swf|ico|rar|zip|txt|flv|mid|doc|docx|ppt|pdf|xls|xlsx|mp3|wma)$ {   #设置静态网页直接由nginx进行处理
		expires 30d;
	    }
	    location ~ .*\.(js|css)?$ {
		expires 1h;
	    }
              
   }  


}  

猜你喜欢

转载自jaychang.iteye.com/blog/2258822
今日推荐