#user nobody; worker_processes 1; #pid /nginx/pid/nginx.pid; error_log /Users/baibing/work/cv_zc/vesh_test/log/nginx-error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 20000; multi_accept on; #use epoll; #mac 用不了 } 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 log/access.log main; sendfile on; sendfile_max_chunk 100k; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; gzip on; proxy_connect_timeout 5; proxy_read_timeout 60; proxy_send_timeout 5; proxy_buffer_size 16k; proxy_buffers 4 64k; proxy_busy_buffers_size 128k; proxy_temp_file_write_size 128k; proxy_temp_path /Users/baibing/work/cv_zc/vesh_test/nginx/temp; proxy_cache_path /Users/baibing/work/cv_zc/vesh_test/nginx/cache levels=1:2 keys_zone=cache_one:50m inactive=20m max_size=30g; server { listen 80; server_name localhost; charset utf-8; #charset koi8-r; #access_log logs/host.access.log main; location ~*.(htm|css|js|jpg|jpeg|png|gif|xml|ico|swf|eot|svg|ttf|woff|pdf|doc|docx)$ { root /Users/baibing/work/cv_zc/vesh_test/bin/; proxy_pass http://127.0.0.1:8012; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; index index.html index.htm; proxy_cache cache_one; proxy_cache_valid 200 302 1h; proxy_cache_key $host$uri$is_args$args; proxy_ignore_headers "Cache-Control" "Expires" "Set-Cookie";#不处理后端服务器返回的指定响应头 expires 30d; } location ~*^.+$ { root /Users/baibing/work/cv_zc/vesh_test/bin/; proxy_pass http://127.0.0.1:8012; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; index index.html index.htm; #deny 127.0.0.2; #allow 127.0.0.1; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root /Users/baibing/work/cv_zc/vesh_test/bin/error; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} include servers/*; }