Skip to content

Instantly share code, notes, and snippets.

View lansexinyu520's full-sized avatar

shawn lansexinyu520

  • 广东爱瓦力科技有限公司
  • 中国东莞
View GitHub Profile
@lansexinyu520
lansexinyu520 / nginx.default.conf
Last active September 16, 2015 09:53 — forked from sumardi/nginx.default.conf
Install PHP-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and PHP-FPM
sudo yum install -y nginx php-fpm
# Install PHP extensions
sudo yum install -y php-devel php-mysql php-pdo \
php-pear php-mbstring php-cli php-odbc \