default 543 B

12345678910111213141516171819202122
  1. upstream php5-fpm-sock {
  2. server 127.0.0.1:9000;
  3. }
  4. server {
  5. listen 80;
  6. error_log /config/log/nginx/photoshow.log info;
  7. location / {
  8. alias /config/www/PhotoShow/;
  9. index index.php;
  10. client_max_body_size 0;
  11. location ~* \.php$ {
  12. #try_files $uri =404;
  13. allow all;
  14. include /etc/nginx/fastcgi_params;
  15. fastcgi_pass php5-fpm-sock;
  16. fastcgi_param SCRIPT_FILENAME /config/www/PhotoShow/$fastcgi_script_name;
  17. fastcgi_param QUERY_STRING $query_string;
  18. fastcgi_intercept_errors off;
  19. client_max_body_size 0;
  20. }
  21. }
  22. }