欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

nginx + php 的配置

程序员文章站 2022-05-06 20:04:23
...

location ~ \.php$ { root /home/jsckdao/www; #这是你网站的根目录 fastcgi_pass 127.0.0.1:3344; #这里指定了fastcgi进程侦听的端口,nginx就是通过这里与php交互的 fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_scrip

location ~ \.php$ {

  root    /home/jsckdao/www; #这是你网站的根目录

  fastcgi_pass  127.0.0.1:3344; #这里指定了fastcgi进程侦听的端口,nginx就是通过这里与php交互的

  fastcgi_index  index.php;

  fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;

  include    fastcgi_params;

}