Php

nginx,別名,php-fpm = 找不到文件

  • October 16, 2014

我正在嘗試使用 DAViCal 設置 nginx。但是,我在日誌中收到“未找到文件”和“在 stderr 中發送的 FastCGI:“主腳本未知”。看起來我的別名有問題,但我肯定無法弄清楚。

我的虛擬主機:

server {
listen   80; ## listen for ipv4; this line is default and implied
listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

root /var/www-data;
index index.html index.htm index.shtml index.php;

# Make site accessible from http://localhost/
server_name just.a.server;

location / {
   # First attempt to serve request as file, then
   # as directory, then fall back to displaying a 404.
   try_files $uri $uri/ /index.html;
   ssi on;
   # Uncomment to enable naxsi on this location
   # include /etc/nginx/naxsi.rules
}
location ~ \.php$ {
   #try_files  $uri =404;
   include /etc/nginx/fastcgi_params;
   fastcgi_split_path_info ^(.+\.php)(/.+)$;
   fastcgi_pass unix:/var/run/php5-fpm.sock;
   fastcgi_index index.php;
}

location /kalender {
   alias  /usr/share/davical/htdocs;
}

}

我的 fastcgi_params

fastcgi_param   QUERY_STRING        $query_string;
fastcgi_param   REQUEST_METHOD      $request_method;
fastcgi_param   CONTENT_TYPE        $content_type;
fastcgi_param   CONTENT_LENGTH      $content_length;

fastcgi_param   SCRIPT_FILENAME     $request_filename;
fastcgi_param   SCRIPT_NAME     $fastcgi_script_name;
fastcgi_param   REQUEST_URI     $request_uri;
fastcgi_param   DOCUMENT_URI        $document_uri;
fastcgi_param   DOCUMENT_ROOT       $document_root;
fastcgi_param   SERVER_PROTOCOL     $server_protocol;

fastcgi_param   GATEWAY_INTERFACE   CGI/1.1;
fastcgi_param   SERVER_SOFTWARE     nginx/$nginx_version;

fastcgi_param   REMOTE_ADDR     $remote_addr;
fastcgi_param   REMOTE_PORT     $remote_port;
fastcgi_param   SERVER_ADDR     $server_addr;
fastcgi_param   SERVER_PORT     $server_port;
fastcgi_param   SERVER_NAME     $server_name;

fastcgi_param   HTTPS           $https;

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

期待您的回复。

修復。事實證明,您必須在每個位置塊下包含 php 位。

location /calender {
   alias  /usr/share/davical/htdocs;

       location ~ \.php$ {
       fastcgi_split_path_info ^(.+?\.php)(/.*)?$;
       fastcgi_pass unix:/var/run/php5-fpm.sock;
       fastcgi_index index.php;
       include fastcgi_params;
       }

}

我發現將我的 php 匹配塊移動到我的根位置塊上方工作得很好。

location ~ \.php$ {
   include fastcgi.conf;
   fastcgi_intercept_errors on;
   fastcgi_pass 127.0.0.1:9000;
   fastcgi_index  index.php;
   include fastcgi_params;
   fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

location / {
   root /Users/YOU/Projects/PROJECT;
}

引用自:https://serverfault.com/questions/565425