Skip to content

Instantly share code, notes, and snippets.

View dnielrodrigues's full-sized avatar
🎯
Focusing

Dniel dnielrodrigues

🎯
Focusing
View GitHub Profile
@dnielrodrigues
dnielrodrigues / Commands.sh
Created March 14, 2018 21:01 — forked from nrollr/Commands.sh
Install PHP and NGINX on Amazon Linux AMI
## Install NGINX
$ sudo yum install nginx -y
## Install PHP and PHP-FPM
$ sudo yum install php -y
$ sudo yum install php-fpm -y
## Configure NGINX (see below)
$ sudo nano /etc/nginx/conf.d/default.conf