After a long time to research and fix many issues. Now, my config has work fine. I want to create this article to share my experiences when I start work on MacOS.
First, I want to introduce about myself. I had learnt and worked on Windows OS when I was 15 years old. Then, on June-2017, I join into a company ecomerce. They develop base on Magento. They require me can be install and using Ubuntu OS. At that moment, I look like a student has just graduated althought I had 3 years experiences.
When I work on Windows OS, of course, I use third party to build enviroment. It's name is xampp. However, on Ubuntu OS, I must learn to install webserver(apache), mysql, record some commands in my memory. After 1 year, I buy for myself a Macbook pro and I decided install Nginx on MacOS. Why I did it? Because I heard from my partner, we just only config once time if we use nginx. Beside that, we will run nginx with php-fpm. It will improve about performance when we run a project has high level complicate.
All right, Talk about myself is enough, Let talk about Nginx, PHP with Homebrew on MacOS high Sierra 10.13.4.
We should install Xcode. Then, we will Install Commandline Tools
xcode-select --install
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew doctor
brew tap homebrew/services
brew install bash-completion
brew update && brew upgrade
sudo nano ~/.bash_profile
Add following lines
export PATH="/usr/local/bin:$PATH"
export PATH="/usr/local/sbin:$PATH"
if [ -f $(brew --prefix)/etc/bash_completion ]; then
source $(brew --prefix)/etc/bash_completion
fi
Note on this. Until to this moment, I still do not understand what's dnsmasq and how to config it. It's really very comlex. However, I found a solution for this: using hosts file. It's easier and simple.
I have read some topics to talk about this step. Almost composer said we should tap formulaes homebrew/dupes
, homebrew/php
. However, on my Mac, I cannot tap it. I think It had been removed out off homebrew. So, I decided to tap homebrew/core
and so lucky when It works fine :))). Alright, let's run these command to install PHP
brew tap homebrew/php && \
brew install --without-apache --with-fpm --with-mysql php70
Why did I install PHP70? I have tried to install PHP72, however, when I run magento site, I meet some issues and I guess the root cause is about version PHP. Therefore, I decided install this version.
sudo nano /usr/local/etc/php/7.0/php-fpm.d/www.conf
user = YOUR_USERNAME
group = YOUR_GROUP || staff
Start PHP
sudo brew services start php70
Check version
php -v
Check processing As my way, I run this command:
ps aux | grep -r "php"
To install nginx, run these commands:
brew tap homebrew/nginx && \
brew install nginx
## Start Nginx
sudo brew services start nginx
## Check if Nginx is running on default port
curl -IL http://127.0.0.1:8080
Output should look like this
HTTP/1.1 200 OK
Server: nginx/1.10.0
Date: Sat, 07 May 2016 07:36:32 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Tue, 26 Apr 2016 13:31:24 GMT
Connection: keep-alive
ETag: "571f6dac-264"
Accept-Ranges: bytes
Then, to config Nginx. You should stop it.
sudo brew services stop nginx
Create missing directories
mkdir -p /usr/local/etc/nginx/sites-available && \
mkdir -p /usr/local/etc/nginx/sites-enabled && \
mkdir -p /usr/local/etc/nginx/conf.d && \
mkdir -p /usr/local/etc/nginx/ssl
To run as normally with port 80. You can open file usr/local/etc/nginx/nginx.conf
and edit line 'listen' in section server to 80. Then, Start and Test Nginx
## Start Nginx
sudo brew services start nginx
## Check if Nginx is running on default port
curl -IL http://localhost
## Output should look like this
HTTP/1.1 200 OK
Server: nginx/1.10.0
Date: Sat, 07 May 2016 08:35:57 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Tue, 26 Apr 2016 13:31:24 GMT
Connection: keep-alive
ETag: "571f6dac-264"
Accept-Ranges: bytes
Note: Remember using sudo to run the services with port less than 1000
Setup example virtual hosts
Because MacOS prevent Domain *.loc
, I use virtual domain *.local
. Now, you can download my example config.
curl -L https://gist.github.com/thanhoangxuannghiep/c278ea1d9c9e7355c0973108ab11523f/raw/e019dcec0e3f136c1d2cb87c1b901f82b1b6ef5c/nginx.conf -o /usr/local/etc/nginx/nginx.conf
curl -L https://gist.github.com/thanhoangxuannghiep/c278ea1d9c9e7355c0973108ab11523f/raw/e019dcec0e3f136c1d2cb87c1b901f82b1b6ef5c/mage -o /usr/local/etc/nginx/sites-available/default
After download my config files. You should edit your root, your servername and active your virtual host
ln -sfv /usr/local/etc/nginx/sites-available/default /usr/local/etc/nginx/sites-enabled/default
Create info.php for testing echo "<?php phpinfo();" > /path/to/your/document/root
Test
sudo brew services restart nginx
curl -IL http://mage.local/info.php
# Output should look like this
HTTP/1.1 200 OK
Server: nginx/1.13.12
Date: Fri, 10 Aug 2018 17:34:21 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Powered-By: PHP/7.0.30
Done.