Skip to content

Instantly share code, notes, and snippets.

View jeremybradbury's full-sized avatar
🎹
Making music

Jeremy Bradbury jeremybradbury

🎹
Making music
  • Portland, OR
  • 20:38 (UTC -07:00)
View GitHub Profile
@jeremybradbury
jeremybradbury / lanmmnp-ec2-ubuntu16.sh
Last active January 23, 2020 21:24
LANMMNP (Linux Apache Nginx MySQL MongoDB Nodejs12 PHP7 ) Stack provisioning script, designed for Amazon EC2 Ubuntu 16.04 instances
echo "https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-16-04"
echo -n "Skip nginx (y/N)? "
read inginx
if [ "$inginx" != "${inginx#[Yy]}" ] ;then
echo "nginx skipped"
else
echo "installing nginx"
sudo apt-get update
sudo apt-get install nginx
echo "press q to quit less"