Heim >Backend-Entwicklung >PHP-Tutorial >mac 配置nginx+php

mac 配置nginx+php

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 13:36:51993Durchsuche

系统: OS X Yosemite 10.10.1

系统自带php和php-fpm

路径备注:

php.ini : /etc/

php-fpm.conf :/etc/

nginx.conf :/usr/local/etc/nginx/nginx.conf

nginx 默认root:/usr/local/opt/nginx/html


1.安装nginx,我使用了brew

brew install nginx

2.启动php-fpm

sudo php-fpm
如果报错的话,复制php-fpm.conf.default一份,修改php-fpm.conf的error_log 存放的路径或启动的端口

3.打开nginx.conf

开启php的注释,配置好自己的root

          location ~ \.php$ {              root           /Users/maming/php;              fastcgi_pass   127.0.0.1:9000;              fastcgi_index  index.php;              fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;              include        fastcgi_params;          }

注意

SCRIPT_FILENAME  /script$fastcgi_script_name;

要改成

SCRIPT_FILENAME  $document_root$fastcgi_script_name;

否则回报文件不存在的。

4.开启nginx

sudo nginx

或重启

sudo nginx -s reload


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php错误提示Nächster Artikel:PHP中文乱码问题