Skip to content

Instantly share code, notes, and snippets.

View brwnll's full-sized avatar

Dustin Brownell brwnll

  • Small Dog Studios
  • North Bend, WA
  • 17:15 (UTC -07:00)
  • X @brwnll
View GitHub Profile
@sumardi
sumardi / nginx.default.conf
Last active November 3, 2023 18:49
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 \