免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2896 | 回复: 4
打印 上一主题 下一主题

nginx出现No input file specified [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-02-27 15:38 |只看该作者 |倒序浏览
Google了很多,都没有解决。希望CU的朋友帮看看。
nginx配置如下:

  1. user  www www;

  2. worker_processes 8;

  3. error_log  /data1/logs/nginx_error.log  crit;

  4. pid        /usr/local/webserver/nginx/nginx.pid;

  5. #Specifies the value for maximum file descriptors that can be opened by this process.
  6. worker_rlimit_nofile 65535;

  7. events
  8. {
  9.   use epoll;
  10.   worker_connections 65535;
  11. }

  12. http
  13. {
  14.   include       mime.types;
  15.   default_type  application/octet-stream;

  16.   #charset  gb2312;
  17.       
  18.   server_names_hash_bucket_size 128;
  19.   client_header_buffer_size 32k;
  20.   large_client_header_buffers 4 32k;
  21.   client_max_body_size 8m;
  22.       
  23.   sendfile on;
  24.   tcp_nopush     on;

  25.   keepalive_timeout 60;

  26.   tcp_nodelay on;

  27.   fastcgi_connect_timeout 300;
  28.   fastcgi_send_timeout 300;
  29.   fastcgi_read_timeout 300;
  30.   fastcgi_buffer_size 64k;
  31.   fastcgi_buffers 4 64k;
  32.   fastcgi_busy_buffers_size 128k;
  33.   fastcgi_temp_file_write_size 128k;

  34.   gzip on;
  35.   gzip_min_length  1k;
  36.   gzip_buffers     4 16k;
  37.   gzip_http_version 1.0;
  38.   gzip_comp_level 2;
  39.   gzip_types       text/plain application/x-javascript text/css application/xml;
  40.   gzip_vary on;

  41.   #limit_zone  crawler  $binary_remote_addr  10m;

  42.   server
  43.   {
  44.     listen       80;
  45.     server_name  bbs.abcd.com;
  46.     index index.html index.htm index.php;
  47.     root  /data0/htdocs/bbs;

  48.     #limit_conn   crawler  20;   
  49.                              
  50.     location ~ .*\.(php|php5)?$
  51.     {      
  52.       #fastcgi_pass  unix:/tmp/php-cgi.sock;
  53.       fastcgi_pass  127.0.0.1:9000;
  54.       fastcgi_index index.php;
  55.       include fcgi.conf;
  56.     }
  57.    
  58.     location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  59.     {
  60.       expires      30d;
  61.     }

  62.     location ~ .*\.(js|css)?$
  63.     {
  64.       expires      1h;
  65.     }   

  66.     log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
  67.               '$status $body_bytes_sent "$http_referer" '
  68.               '"$http_user_agent" $http_x_forwarded_for';
  69.     access_log  /data1/logs/access.log  access;
  70.   }

  71.   server
  72.   {
  73.     listen  80;
  74.     server_name  status.abcd.com;

  75.     location / {
  76.     stub_status on;
  77.     access_log   off;
  78.     }
  79.   }
  80. }
复制代码
fastcgi.conf配置:

  1. fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
  2. fastcgi_param  QUERY_STRING       $query_string;
  3. fastcgi_param  REQUEST_METHOD     $request_method;
  4. fastcgi_param  CONTENT_TYPE       $content_type;
  5. fastcgi_param  CONTENT_LENGTH     $content_length;

  6. fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
  7. fastcgi_param  REQUEST_URI        $request_uri;
  8. fastcgi_param  DOCUMENT_URI       $document_uri;
  9. fastcgi_param  DOCUMENT_ROOT      $document_root;
  10. fastcgi_param  SERVER_PROTOCOL    $server_protocol;

  11. fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
  12. fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;

  13. fastcgi_param  REMOTE_ADDR        $remote_addr;
  14. fastcgi_param  REMOTE_PORT        $remote_port;
  15. fastcgi_param  SERVER_ADDR        $server_addr;
  16. fastcgi_param  SERVER_PORT        $server_port;
  17. fastcgi_param  SERVER_NAME        $server_name;

  18. # PHP only, required if PHP was built with --enable-force-cgi-redirect
  19. fastcgi_param  REDIRECT_STATUS    200;                              
复制代码
php.ini相关配置:
  1. cgi.fix_pathinfo=0
  2. doc_root =
复制代码
求助。

论坛徽章:
0
2 [报告]
发表于 2012-02-27 15:40 |只看该作者
附:
访问.html出现404
文件权限为www:www用户

论坛徽章:
0
3 [报告]
发表于 2012-02-27 17:52 |只看该作者
语法测试OK否?
错误日志?

论坛徽章:
0
4 [报告]
发表于 2012-02-29 08:25 |只看该作者
错误日志啥都不丢出来,你以为别人都是神啊?全靠猜

论坛徽章:
0
5 [报告]
发表于 2012-09-17 22:20 |只看该作者
回复 1# axengine


    你这个问题最后解决了么  我最近也遇到了  死活解决不了 崩溃啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP