-1

这有效:

location ~ ^/special/(.+\.php)$ {
  alias /var/special/$1;
  try_files "" =404;
  include fastcgi_params;
  fastcgi_pass 127.0.0.1:9000; # php-fpm socket
}

但这不会:

location ~ ^/special/(.+\.php)$ {
  alias /var/special/$1;
  try_files "" =404;
  include fastcgi_params;
  fastcgi_pass 127.0.0.1:9000; # php-fpm socket
  fastcgi_cache mycache;
}

如果我尝试访问 URL“/special/index.php”,我会得到“找不到文件”。浏览器中的文本,我假设它来自 php-fpm 或 PHP。我在 Nginx 日志中收到此错误:

FastCGI sent in stderr: "Primary script unknown", client: 202.179.27.65, server: myserver.org, request: "GET /special/index.php HTTP/1.1", host: "myserver.org"

知道为什么添加 fastcgi_cache 会破坏这一点吗?

请注意,当我使用使用别名的位置时,fastcgi_cache 可以正常工作。

4

1 回答 1

0

经过几天(!)的摆弄,这种变化似乎起作用了:

location ~ ^/special(/.+\.php)$ {
  root /var/special;
  try_files "" =404;
  include fastcgi_params;
  fastcgi_pass 127.0.0.1:9000; # php-fpm socket
  fastcgi_cache mycache;
  fastcgi_param SCRIPT_FILENAME $document_root$1;
  fastcgi_param SCRIPT_NAME $1;
}

似乎有所不同的是 1) 使用“root”,这似乎是 fastcgi_cache 所需要的,2) 显式设置 SCRIPT_FILENAME 和 SCRIPT_NAME,因为否则“root”将无法工作(即使没有 fastcgi_cache)。

于 2013-08-26T18:55:13.183 回答