nginx.conf 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. #user nobody;
  2. worker_processes 8;
  3. #error_log logs/error.log;
  4. #error_log logs/error.log notice;
  5. #error_log logs/error.log info;
  6. #pid logs/nginx.pid;
  7. events {
  8. worker_connections 1024;
  9. }
  10. http {
  11. include /usr/local/nginx/conf/mime.types;
  12. default_type application/octet-stream;
  13. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  14. # '$status $body_bytes_sent "$http_referer" '
  15. # '"$http_user_agent" "$http_x_forwarded_for"';
  16. #access_log logs/access.log main;
  17. access_log off;
  18. sendfile on;
  19. #tcp_nopush on;
  20. #keepalive_timeout 0;
  21. keepalive_timeout 65;
  22. #gzip on;
  23. upstream fastcgi_backend {
  24. server 127.0.0.1:9001;
  25. keepalive 32;
  26. }
  27. server {
  28. listen 8080;
  29. server_name localhost;
  30. #charset koi8-r;
  31. #access_log logs/host.access.log main;
  32. #location / {
  33. # root html;
  34. # index index.html index.htm;
  35. #}
  36. #error_page 404 /404.html;
  37. # redirect server error pages to the static page /50x.html
  38. #
  39. #error_page 500 502 503 504 /50x.html;
  40. #location = /50x.html {
  41. # root html;
  42. #}
  43. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  44. #
  45. #location ~ \.php$ {
  46. # proxy_pass http://127.0.0.1;
  47. #}
  48. root /home/ubuntu/FrameworkBenchmarks/php-zend-framework/public/;
  49. index index.php;
  50. location / {
  51. try_files $uri $uri/ /index.php?$uri&$args;
  52. }
  53. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  54. #
  55. location ~ \.php$ {
  56. try_files $uri =404;
  57. fastcgi_pass fastcgi_backend;
  58. fastcgi_keep_conn on;
  59. fastcgi_index index.php;
  60. # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
  61. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  62. include /usr/local/nginx/conf/fastcgi_params;
  63. }
  64. # deny access to .htaccess files, if Apache's document root
  65. # concurs with nginx's one
  66. #
  67. #location ~ /\.ht {
  68. # deny all;
  69. #}
  70. }
  71. # another virtual host using mix of IP-, name-, and port-based configuration
  72. #
  73. #server {
  74. # listen 8000;
  75. # listen somename:8080;
  76. # server_name somename alias another.alias;
  77. # location / {
  78. # root html;
  79. # index index.html index.htm;
  80. # }
  81. #}
  82. # HTTPS server
  83. #
  84. #server {
  85. # listen 443;
  86. # server_name localhost;
  87. # ssl on;
  88. # ssl_certificate cert.pem;
  89. # ssl_certificate_key cert.key;
  90. # ssl_session_timeout 5m;
  91. # ssl_protocols SSLv2 SSLv3 TLSv1;
  92. # ssl_ciphers HIGH:!aNULL:!MD5;
  93. # ssl_prefer_server_ciphers on;
  94. # location / {
  95. # root html;
  96. # index index.html index.htm;
  97. # }
  98. #}
  99. }