我正在尝试在Windows上设置NGINX来为PHP应用程序提供服务。我收到了No input file specified
条消息。这似乎是一个常见问题;但是,我所看到的解决方案(StackOverflow和其他地方都没有)解决了我的困难。
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
index index.html index.html index.php;
# root c:/Users/Kelly\ Marchewa/workspace/Code/MidAmCorp/out;
root c:/www;
location / {
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9123;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
# include fastcgi.conf;
}
}
}
我尝试过/做过的事:
server
块中。SCRIPT_FILENAME
指定为$document_root$fastcgi_script_name;
,而不是对其进行硬编码。这些行动似乎涵盖了我发现的潜在适用的解决方案。任何指导都将不胜感激。
感谢。
编辑:
正如测试一样,我尝试明确编码SCRIPT_FILENAME
而不是$document_root
的路径并且它有效。但是,这并不理想。什么可能导致这种行为?