nginx No input file specified.

来源:互联网 发布:剑3脸型数据 编辑:程序博客网 时间:2024/05/02 00:30

nginx.conf的转发php的一段,定义root来满足fastcgi.conf内的 $document_root

或者在上一层server中定义root。。


注意:root定义的目录应该和nginx指定的目录一样。。


通常我们这样写吧

server {

  root html

  location / {

  }

  location ^/.php$ {

    #fastcgi

  }

}