nginx 下 php ob_flush flush 支持 的方法

 

nginx 下 php ob_flush flush 支持

的方法

 

  
  
  
  
  1. So I have the following location configurations: 
  2.  
  3. location ~ \.php$ { 
  4.         include /etc/nginx/fastcgi_params; 
  5.         fastcgi_pass  127.0.0.1:9000; 
  6.         fastcgi_index index.php; 
  7.         fastcgi_param  SCRIPT_FILENAME  /path/to/public_html/$fastcgi_script_name; 
  8.         fastcgi_read_timeout 600; 
  9.         fastcgi_buffer_size   1k;                               
  10.         fastcgi_buffers       128 1k;  # up to 4k + 128 * 4k 
  11.         fastcgi_max_temp_file_size 0; 
  12.         gzip off
  13.     } 
  14. The important configurations are: 
  15.  
  16. fastcgi_buffer_size   1k;                               
  17. fastcgi_buffers       128 1k;  # up to 1k + 128 * 1k 
  18. fastcgi_max_temp_file_size 0; 
  19. gzip off

 

你可能感兴趣的:(PHP,nginx,职场,休闲)