免费注册 查看新帖 |

Chinaunix

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

[Web] Nginx+PHP5+FastCGI中遇到的一个关于alias的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-01-13 21:20 |只看该作者 |倒序浏览
Web平台想尝试一下Nginx,安装后配置虚拟主机部分,其中一个虚拟主机的情况如下:

目录结构
/wwwroot/webA   -> http://www.foo.com/
/wwwroot/webB   -> http://www.foo.com/forum/

尝试用 如下配置段

  1.         location  / {
  2.             root   /wwwroot/webA;
  3.             index  index.php index.html index.htm;
  4.         }
  5.         location ~ .*\.php?$ {
  6.             include conf/fastcgi.conf;
  7.             fastcgi_pass  127.0.0.1:10080;
  8.             fastcgi_index index.php;
  9.             fastcgi_param  SCRIPT_FILENAME /wwwroot/webA$fastcgi_script_name;
  10.         }
  11.         location  /forum/ {
  12.             alias /wwwroot/webB/;
  13.             index  index.php index.html index.htm;
  14.         }

  15.         location ~ ^/forum/.+\.php$ {
  16.             include conf/fastcgi.conf;
  17.             fastcgi_pass  127.0.0.1:10080;
  18.             fastcgi_index index.php;
  19.             fastcgi_param  SCRIPT_FILENAME /wwwroot/webB/$fastcgi_script_name;
  20.         }
复制代码
现在的情况是
访问 http://www.foo.com/下的php文件和html文件都正常
访问 http://www.foo.com/forum/index.php提示404(index.php肯定存在) ,访问 html 文件正常。。。

上面的配置出了什么问题呢?或者是有其他的方法吗?

FireFox下显示"No input file specified."

如果直接把webB的内容放在http://www.foo.com下一切正常。。

[ 本帖最后由 chengxiao 于 2008-1-13 21:37 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-03-16 22:40 |只看该作者

回复 #1 chengxiao 的帖子

醒置好这个文件就行了
conf/fastcgi.conf
我也遇到这个问题,楼主可到nginx的官方搜下fastcgi.conf这个东西,那里有范例

这样配置好后还有另一问题就是ie不能正确解析php的

论坛徽章:
0
3 [报告]
发表于 2009-06-01 20:15 |只看该作者
楼主解决了吗?

论坛徽章:
0
4 [报告]
发表于 2009-06-01 21:53 |只看该作者
nginx 能不能支持 wap ??

论坛徽章:
0
5 [报告]
发表于 2009-06-03 21:12 |只看该作者
我的测试配置如下。没有问题



  1. #user  nobody;
  2. worker_processes  1;

  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       mime.types;
  12.     default_type  application/octet-stream;


  13.     sendfile        on;
  14.     tcp_nopush     on;

  15.     #keepalive_timeout  0;
  16.     keepalive_timeout  65;

  17.     gzip  on;
  18. #==============================================
  19. #++++++  domain 2  ++++++++++++
  20.     server {
  21.         listen       80;
  22.         server_name  [url]www.test.com[/url];
  23.         #charset gb2312;
  24.         #access_log  logs/host.access.log  main;
  25.         location / {
  26.             root   html/dz;
  27.             index  index.html index.htm index.php;
  28.             rewrite ^(.*)/archiver/((fid|tid)-[\w\-]+\.html)$ $1/archiver/index.php?$2 last;
  29.             rewrite ^(.*)/forum-([0-9]+)-([0-9]+)\.html$ $1/forumdisplay.php?fid=$2&page=$3 last;
  30.             rewrite ^(.*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/viewthread.php?tid=$2&extra=page%3D$4&page=$3 last;
  31.             rewrite ^(.*)/profile-(username|uid)-(.+)\.html$ $1/viewpro.php?$2=$3 last;
  32.             rewrite ^(.*)/space-(username|uid)-(.+)\.html$ $1/space.php?$2=$3 last;
  33.             rewrite ^(.*)/tag-(.+)\.html$ $1/tag.php?name=$2 last;
  34.         }
  35.         location ~ \.php$ {
  36.             root           html;
  37.             fastcgi_pass   127.0.0.1:9000;
  38.             fastcgi_index  index.php;
  39.             fastcgi_param  SCRIPT_FILENAME  /nginx/html/dz/$fastcgi_script_name;
  40.             include        fastcgi_params;
  41.         }
  42.         #error_page  404              /404.html;
  43.         error_page   404 500 502 503 504  /50x.html;
  44.         location = /50x.html {
  45.             root   html;
  46.         }
  47.     }
  48. #==============================================
  49. #++++++  domain 2  ++++++++++++   
  50.       server{
  51.         listen 80;
  52.         server_name localhost;
  53.         location / {
  54.             root   html/tool;
  55.             index  index.html index.htm index.php;
  56.             rewrite ^(.*)/add\.html$ $1/add.php last;
  57.         }
  58.         location ~ \.php$ {
  59.           root html;
  60.           index  index.html index.htm index.php;
  61.           fastcgi_pass   127.0.0.1:9000;
  62.           fastcgi_index  index.php;
  63.           fastcgi_param  SCRIPT_FILENAME  /nginx/html/tool/$fastcgi_script_name;
  64.           include        fastcgi_params;
  65.         }
  66.      }

  67.    
  68. }

复制代码

论坛徽章:
0
6 [报告]
发表于 2009-12-30 13:52 |只看该作者

回复 #1 chengxiao 的帖子

楼主
fastcgi_param  SCRIPT_FILENAME /wwwroot/webB/$fastcgi_script_name;
这一行$fastcgi_script_name;前多了一个/

论坛徽章:
2
狮子座
日期:2013-08-26 15:25:32金牛座
日期:2013-09-05 15:45:36
7 [报告]
发表于 2009-12-30 19:40 |只看该作者
还真没注意
确实如楼上所说多了一个/
楼主去试试

论坛徽章:
0
8 [报告]
发表于 2010-01-01 20:09 |只看该作者
php支持是否正常?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP