一、安装 Nginx(Mac自带Nginx无需安装)


终端执行:

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">
<pre style="margin-top:10px;margin-bottom:10px;padding:0px;max-width:100%;">```
brew search nginx<br></br>brew install nginx<br></br>

安装完以后,可以在终端输出的信息里看到一些配置路径:

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">[object Object]

二、访问localhost:8080

Nginx 默认8080端口,这时已经可以访问了:


localhost:8080

会有一个默认欢迎界面。

          • -

三、修改 php-fpm 文件

1.执行命令:

sudo cp /private/etc/php-fpm.conf.default /private/etc/php-fpm.conf

2.找到目录下的 php-fpm 文件

/private/etc/php-fpm.conf

3.找到32行的 error\_log ,改为(正行替换,注意 ‘;’ 和空格):

error\_log = /usr/local/var/log/php-fpm.log

否则 php-fpm 时会报错

ERROR: failed to open error\_log (/usr/var/log/php-fpm.log): No such file or directory (2)

          • -

四、修改 Nginx 配置

1.打开 nginx.config 文件

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

2.找到 server 的 location 配置,给 index 加一个 index.php

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">
<pre style="margin-top:10px;margin-bottom:10px;padding:0px;max-width:100%;">```
location / {<br></br>    root   html;<br></br>    index  index.html index.htm index.php;<br></br>}<br></br>

3.并打开 server 下被注释的 location ~.php$(即删除代码前面的 ‘#’),如下:

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">
<pre style="margin-top:10px;margin-bottom:10px;padding:0px;max-width:100%;">```
location ~ .php$ {<br></br>    root           html;<br></br>    fastcgi_pass   127.0.0.1:9000;<br></br>    fastcgi_index  index.php;<br></br>    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;<br></br>    include        fastcgi_params;<br></br>}<br></br>

4.并修改 fastcgi\_param 参数

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">[object Object]

五、创建 index.php

在 /usr/local/var/www 目录下,删除 index.html,创建 index.php,输入

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">[object Object]

六、启动相关服务

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">
<pre style="margin-top:10px;margin-bottom:10px;padding:0px;max-width:100%;">```
sudo nginx<br></br>sudo php-fpm<br></br>

然后访问localhost:8080,看到 php 配置信息,就说明 ok 了

启动php报错

WARNING: Nothing matches the include pattern ‘/private/etc/php-fpm.d/*.conf’ from /private/etc/php-fpm.conf at line 126.

 title=

解决方案:

<pre style="margin-top:0px;margin-bottom:0px;padding:0px;max-width:100%;color:rgb(51,51,51);font-size:17px;letter-spacing:.544px;text-align:justify;background-color:rgb(255,255,255);">[object Object]

七、其他命令

修改 nginx.conf 后,重载配置文件

sudo nginx -s reload

停止 nginx 服务器

sudo nginx -s stop

停止 php-fpm可以直接在 Activity Monitor 中停止。也可以使用脚本来停。

php-fpm 的关闭、重启,先通过 ps -ef | grep php-fpm 找到运行中的php-fpm进程的PID,然后通过 kill -s signal PID 的方式进行管理. 相关signal有:

信号作用INT立即终止QUIT平滑终止USR1重新打开日志文件USR2重启(平滑重载所有worker进程并重新载入配置和二进制模块)

Nginx开启目录浏览文件和文件夹:

https://segmentfault.com/a/1190000025139000

          • -

简单介绍nginx和php的通信过程

当客户端访问一个url连接时。请求会被nginx获取。nginx识别出这是一个php的请求后,通过fastcgi协议约定的端口127.0.0.1:9000,将请求传给php处理。这时候请求就到了php-fpm这里。

而php-fpm遵循的fastcgi协议,与传统的php-cgi(apache传递的处理)不一样。fastcgi会在请求到来之前,会启动一个master,加载php.ini配置。然后启动多个worker。当请求过来时,master就可以直接分配给一个worker。这样节省了资源。(因为传统的php-cgi在每一次请求的时候都启动加载一次php配置,浪费资源)同时从另一个角度上讲,nginx支持多线程。

          • -
          • -

- END -

基于Mac自带nginx、php,配置php服务器 nginx前端教程

标签: nginx, index, log, php, Mac, fastcgi, fpm

相关文章推荐

添加新评论,含*的栏目为必填