免费注册 查看新帖 |

Chinaunix

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

[Web] windows 下安装nginx 出现 No input file specified. [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-01-20 15:50 |只看该作者 |倒序浏览
软件都安装在 E:\WAMP目录下,例如E:\WAMP\php ,E:\WAMP\nginx

我网站的根目录是:E:\website,下面只有一个index.php文件,里面是phpinfo()这个函数

nginx的配置文件如下

nginx.conf文件内容


  1. #user  nobody;
  2. worker_processes  1;

  3. error_log  logs/error.log;
  4. pid        logs/nginx.pid;

  5. events {
  6.     worker_connections  64;
  7. }


  8. http {
  9.     include       /cygdrive/e/wamp/nginx/conf/mime.types;
  10.     default_type  application/octet-stream;  

  11.     #sendfile        on;
  12.     #tcp_nopush     on;

  13.     #keepalive_timeout  0;
  14.     keepalive_timeout  60;

  15.     client_body_temp_path   /cygdrive/e/wamp/nginx/temp/client_body_temp;
  16.     proxy_temp_path         /cygdrive/e/wamp/nginx/temp/proxy_temp_path;
  17.     fastcgi_temp_path       /cygdrive/e/wamp/nginx/temp/fastcgi_temp_path;
  18.     gzip  on;
  19.         fastcgi_intercept_errors on;

  20.     #vhosts settings
  21.     include       /cygdrive/e/wamp/nginx/conf/vhost80.conf;
  22. }

复制代码


vhost80.conf文件内容

  1. server {
  2.     listen       85;
  3.     server_name  localhost;      
  4.     charset      utf-8;

  5.     log_format  main  '$remote_addr - $remote_user [$time_local] $request '
  6.                   '"$status" $body_bytes_sent "$http_referer" '
  7.                   '"$http_user_agent" "$http_x_forwarded_for"';
  8.     access_log   /cygdrive/e/wamp/nginx/logs/access.log  main;
  9.    
  10.    
  11.     # static resources
  12.     #location ~* ^.+\.(html|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js)$
  13.     #{
  14.     #    expires 30d;
  15.     #    break;
  16.     #}

  17.        

  18.     location / {
  19.                 index                        index.html index.php;
  20.         fastcgi_pass   127.0.0.1:9000;
  21.         include        /cygdrive/e/wamp/nginx/conf/fastcgi_params;
  22.     }


  23.     # php scripts
  24.     location ~ .*\.php?$
  25.     {
  26.                 root         /cygdrive/e/website/;
  27.         fastcgi_pass   127.0.0.1:9000;
  28.         include        /cygdrive/e/wamp/nginx/conf/fastcgi_params;
  29.     }

  30.     # error pages
  31.     #error_page   401 403 404 500 502 503 504  /error.html;
  32.     #location = /error.html {
  33.     #        access_log   off;
  34.     #}
  35. }
复制代码


fastcgi_params文件内容:

  1. #fastcgi_pass unix:/opt/nginx/logs/django.sock;

  2. fastcgi_index                     index.php;
  3. fastcgi_pass_header               Authorization;
  4. fastcgi_intercept_errors          off;

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

  10. fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
  11. fastcgi_param  QUERY_STRING       $query_string;
  12. fastcgi_param  REQUEST_METHOD     $request_method;
  13. fastcgi_param  CONTENT_TYPE       $content_type;
  14. fastcgi_param  CONTENT_LENGTH     $content_length;

  15. fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
  16. fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;

  17. fastcgi_param  REMOTE_ADDR        $remote_addr;
  18. fastcgi_param  REMOTE_PORT        $remote_port;
  19. fastcgi_param  SERVER_ADDR        $server_addr;
  20. fastcgi_param  SERVER_PORT        $server_port;
  21. fastcgi_param  SERVER_NAME        $server_name;

  22. # PHP only, required if PHP was built with --enable-force-cgi-redirect
  23. fastcgi_param  REDIRECT_STATUS    200;

复制代码

论坛徽章:
0
2 [报告]
发表于 2009-01-25 17:16 |只看该作者
No input file specified这个问题出现的地方,多是在windowns服务器系统下iis下的ISAPI模式下。目前有两个解决的例子:

1,把PHP.INI里的
doc_root ="
注释掉就可以了。

2,有人升级了php版本到5.2了,就解决了,原文如下:

也回应一下,现在服务器将PHP升级到5.2,ZEND也换成3.2,并且eAccelerator v0.9.5-rc1换成了eAccelerator v0.9.5

问题现在基本没有出现了。并且感觉负载方面也好了点,运行 速度快了。(PHP.INI配置还是一样,没有更改过什么,MYSQL还是用4.0.26)

在网上(DZ官方上也有)有人说PHP5.2解决了W3WP出错的问题了。我想我原来出现问题也是因为W3WP出错造成的(系统日志里也提示有错误的)


我在google中找到的:http://www.liushen.net/post/24.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP