zpush_params 523 B

123456789
  1. # FastCGI params for z-push integration
  2. include fastcgi_params;
  3. fastcgi_index index.php;
  4. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  5. fastcgi_param REQUEST_URI $1;
  6. fastcgi_param PHP_FLAG "magic_quotes_gpc=off \n register_globals=off \n magic_quotes_runtime=off \n short_open_tag=on";
  7. fastcgi_param PHP_VALUE "post_max_size=20M \n upload_max_filesize=20M \n max_execution_time=3660";
  8. fastcgi_read_timeout 3660; # Z-Push Ping might run 3600s, but to be safe
  9. fastcgi_pass 127.0.0.1:9000;