Skip to content

Instantly share code, notes, and snippets.

View hanhpv's full-sized avatar
🎯
Focusing

Hans Phung hanhpv

🎯
Focusing
View GitHub Profile
@hanhpv
hanhpv / nginx-phpfpm-mysql-on-mac.md
Last active April 3, 2024 08:59
Nginx, PHP-FPM, MySQL on Mac OSX

Xcode

Make sure you have the latest version of XCode installed. Available from the AppStore.

Install the Xcode Command Line Tools:

xcode-select --install

Homebrew

Homebrew is the missing package manager for OSX. Download and install using the following command:

@hanhpv
hanhpv / nginx.md
Last active September 15, 2016 07:34
Mac OS X nginx.conf
worker_processes  1;
 
error_log  /usr/local/etc/nginx/logs/error.log debug;
 
events {
    worker_connections  1024;
}
 
http {