mac 使用homebrew安装lnmp
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac 使用homebrew安装lnmp相关的知识,希望对你有一定的参考价值。
1. brew install nginx
2. brew install php70
3. 配置Nginx
① 定义根目录
root /usr/local/sk 将这一部分放到server块里面,去掉其他location块里面的root
② nginx + php 整合,只需将 location ~ \.php 这部分注释去掉
开启pathinfo模式 只需修改下面两处
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $1;
include fastcgi_params;
}
关于path_info的配置,网上找了好久,一直没解决,后来看了这哥们的博客终于搞定了,附个连接:http://blog.csdn.net/pangchengyong0724/article/details/51433440
以上是关于mac 使用homebrew安装lnmp的主要内容,如果未能解决你的问题,请参考以下文章
mac 上用homebrew安装完mysql后,怎样使用密码连接数据库