详细的英文配置
https://blog.frd.mn/install-nginx-php-fpm-mysql-and-phpmyadmin-on-os-x-mavericks-using-homebrew/
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update && brew upgrade
brew tap homebrew/dupes
brew tap homebrew/php/php56
brew install --without-apache --with-fpm --with-mysql homebrew/php/php56
echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.bash_profile && . ~/.bash_profile
echo 'export PATH="/usr/local/sbin:$PATH"' >> ~/.zshrc && . ~/.zshrc
mkdir -p ~/Library/LaunchAgents
cp /usr/local/opt/php56/homebrew.mxcl.php56.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/homebrew.mxcl.php56.plist
brew services start homebrew/php/php56
brew install mysql
brew services start mysql
mysql_secure_installation
brew install nginx
brew services start nginx
cd ~/
mkdir data/www
cd data/www
brew install wget
wget http://download.comsenz.com/DiscuzX/3.2/Discuz_X3.2_SC_UTF8.zip
unzip Discuz_X3.2_SC_UTF8.zip
mv upload/* ./
code /usr/local/etc/nginx/servers/discuz.conf
pwd
查看当前路径,修改下面 root 和 fastcgi_param 的地址
server
{
listen 8002;
server_name localhost;
index index.html index.htm index.php;
root /Users/kevinzhow/data/www;
location ~ \.php$ {
include fastcgi_params;
# fastcgi_pass unix:/tmp/www.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /Users/kevinzhow/data/www$fastcgi_script_name;
}
}
fastcgi_pass 的地址需要查看 /usr/local/etc/php/5.6/php-fpm.conf
的 listen
brew services restart nginx