Create a gist now

Instantly share code, notes, and snippets.

What would you like to do?
echo "--- Add PHP Apt Repository ---"
sudo add-apt-repository ppa:ondrej/php
echo "--- Add Ubuntu (for MySQL) Apt Repository ---"
sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu trusty universe'
echo "--- Update Apt Repositories ---"
sudo apt-get update
echo "--- Install Apt Packages ---"
export DEBIAN_FRONTEND=noninteractive
sudo -E apt-get install -y nginx php5.6-fpm php5.6 php5.6-xml php5.6-mcrypt php5.6-curl php5.6-mysql php5.6-soap php5.6-zip php5.6-gd php5.6-mbstring aspell aspell-en ghostscript openjdk-8-jre-headless mysql-client-5.6 mysql-server-5.6 postfix mailutils
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment