1、在Nginx中配置php程序环境。
打开编辑 /opt/local/etc/nginx/nginx.conf 文件。
http {. . . server {listen 8090;server_name localhost;. . . location / {root html;index index.html index.htm;add_header 'Access-Control-Allow-Origin' '*';add_header 'Access-Control-Allow-Headers' '*';add_header 'Access-Control-Allow-Methods' '*';add_header 'Access-Control-Expose-Methods' '*';}. . . # proxy the PHP scripts to Apache listening on 127.0.0.1:80##location ~ \.php$ {# proxy_pass http://127.0.0.1;#}# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000# note_1: 先执行命令 'php-cgi -b 127.0.0.1:9000' 启动php-cgi, 再执行命令 'nginx' 启动nginx 。# note_2: 访问php网页的http路径端口号不是9000, 而是上一层server所配置的端口号。location ~ \.php$ {# root若被配置成 html , 则在Mac系统里所表示的php站点根路径默认是 '/usr/local/var/www' 。root html;#root /Users/MyUser/Documents/MyPhpFiles;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;#这里的 '$document_root' 就是指前面 'root' 所指的php站点根路径。fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;include fastcgi_params;}. . . }. . . }
2、启动Nginx+Php服务。
创建一个测试php的文件phpinfo.php,其内容如下:
<?php
phpinfo();
?>
把文件phpinfo.php移动到php站点根路径下。
先执行命令 'php-cgi -b 127.0.0.1:9000' 启动php-cgi , 再执行命令 'nginx' 启动Nginx 。
浏览器打开网址 http://localhost:8090/phpinfo.php 看看效果。
参考文章: macbook nginx php环境如何搭建-Nginx-PHP中文网 。
参考文章: Nginx在Window与Mac环境的使用及配置详情_mac nginx-CSDN博客 。
php菜鸟教程: PHP 教程 | 菜鸟教程 。