我正在尝试使用nginx(它的winecellar引导应用程序,但这可能与任何PHP应用程序有关)使用php / slim应用程序。
我的网络应用程序位于/ home / paul / winecellar / bootstrap 和位于/ home / paul / winecellar / api的php / slim应用程序,我想配置服务器将它们视为两个独立的实体(即api文件夹实际上不应该在bootstrap文件夹中)
我需要从/我可以实现的网络应用程序,但我无法从/ api /(例如/ api / wines)
进行api工作我希望能够在浏览器(或者确实是网络应用程序)中使用localhost / api / wines来获取api返回的葡萄酒列表,但是它有404错误。以下是我尝试过的许多配置中的一个没有成功。
server {
listen 80;
root /home/paul/winecellar/bootstrap;
index index.html index.htm;
server_name localhost;
location /api/index.php {
alias /home/paul/winecellar/api/;
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
if (!-f $document_root$fastcgi_script_name) {
return 404;
}
include fastcgi_params;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
rewrite ^/(.*).php/(.*) /$1/$2;
fastcgi_pass unix:/var/run/php5-fpm.sock;
}}
我不知道为什么它没有为该应用程序提供服务。