Advertisement
shmaltorhbooks

Untitled

Jun 18th, 2012
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.47 KB | None | 0 0
  1. server  {
  2.         listen 127.0.0.1:80;
  3.         server_name prof.my www.prof.my;
  4.         charset utf8;
  5.  
  6.         root  /usr/share/pear/xhprof_html;
  7.         location / {
  8.           index index.php;
  9.         }
  10.  
  11.         location ~ \.php$ {
  12.             fastcgi_pass   127.0.0.1:9000;
  13.             fastcgi_index  index.php;
  14.             fastcgi_param  SCRIPT_FILENAME   /usr/share/pear/xhprof_html/$fastcgi_script_name;
  15.             include        fastcgi_params;
  16.        }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement