2

我们正在运行 Nginx+FastCgi 作为我们 Drupal 站点的后端。一切似乎都很好,除了这个网址。http:///sites/all/modules/tinymce/tinymce/jscripts/tiny_mce/plugins/smimage/index.php

(我们在 Drupal 中使用 TinyMCE 模块,当用户尝试上传图片时会调用上面的 url)

当我们使用 Apache 时,一切正常。但是,nginx 会处理上面的 url Binary 并尝试下载它。(我们已经验证了 url 指向的文件是一个有效的 PHP 文件)

知道这里可能有什么问题吗?

我认为这与 NGINX 配置有关,但不完全确定那是什么。

任何帮助是极大的赞赏。

配置:这是来自 nginx 配置文件的片段:

      root /var/www/;
       index index.php;

       if (!-e $request_filename) {
               rewrite ^/(.*)$ /index.php?q=$1 last;
       }

       error_page 404 index.php;
       location ~*
\.(engine|inc|info|install|module|profile|po|sh|.*sql|theme|tpl(\.php)?|xtmpl)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template)$
{
               deny all;
       }

       location ~* ^.+\.(jpg|jpeg|gif|png|ico)$ {
             access_log        off;
           expires           7d;
       }

       location ~* ^.+\.(css|js)$ {
             access_log        off;
           expires           7d;
       }

       location ~ .php$ {
           include /etc/nginx/fcgi.conf;
           fastcgi_pass 127.0.0.1:8888;
           fastcgi_index index.php;
           fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
           fastcgi_param  QUERY_STRING     $query_string;
           fastcgi_param  REQUEST_METHOD   $request_method;
           fastcgi_param  CONTENT_TYPE     $content_type;
           fastcgi_param  CONTENT_LENGTH   $content_length;
       }

       location ~ /\.ht {
               deny  all;
       }
4

3 回答 3

2

做了

location ~ \.php$ {

代替

location ~ .php$ {
于 2009-08-18T03:48:24.887 回答
1

如果没有这样做,还请确保您在端口 8888 上运行了 fastcgi。您可以通过以下方式检查:

netstat -la | grep :8888

如果您收到如下回复,则没关系:

tcp        0      0 localhost:9000          *:*                     LISTEN

或尝试以下操作并查找它正在侦听的端口:

netstat -la | grep LISTEN
于 2009-08-19T00:15:01.913 回答
0

也许 php 文件正在运行但生成一个二进制文件。这个脚本会生成图像吗?没有看到一些配置很难说。

于 2009-06-25T21:08:27.517 回答