Skip to content

Instantly share code, notes, and snippets.

View haroldsphinx's full-sized avatar

Adedayo Akinpelu haroldsphinx

View GitHub Profile
@haroldsphinx
haroldsphinx / Install NGINX + PHP7.0 + PHP-FPM on Amazon Linux AMI.md Install NGINX + PHP7.0 + PHP-FPM + composer + NodeJS + NPM on Amazon Linux AMI

update

sudo yum update

#install nginx sudo yum install nginx -y

#install php 7

@haroldsphinx
haroldsphinx / nginx.default.conf
Created March 11, 2018 12:14 — 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 \
@haroldsphinx
haroldsphinx / Commands.sh
Created November 5, 2017 17:22 — 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
@haroldsphinx
haroldsphinx / nginx.default.conf
Created November 4, 2017 19:28 — forked from santoshachari/nginx.default.conf
PHP5.6 and NGINX: Install PHP56-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 php56-FPM
sudo yum install -y nginx php56-fpm
# Install php56 extensions
sudo yum install -y php56-devel php-mysql php56-pdo php56-pear php56-mbstring php56-cli php56-odbc php56-imap php56-gd php56-xml php56-soap
@haroldsphinx
haroldsphinx / install_nodejs.sh
Created October 12, 2017 15:25 — forked from nimboya/install_nodejs.sh
Install nodejs in any version on an any Linux from Source
#!/bin/sh
nodeversion=6.9.4
echo "Downloading Node from NodeJS website"
wget https://nodejs.org/download/release/v${nodeversion}/node-v${nodeversion}.tar.gz
tar -xvf node-v${nodeversion}.tar.gz
yum groupinstall 'Development Tools' -y
cd node-v${nodeversion}
./configure
make && make install
echo "Giving Root Access"