Skip to content

Instantly share code, notes, and snippets.

@rgwozdz
Last active December 20, 2015 11:59
Show Gist options
  • Save rgwozdz/6126926 to your computer and use it in GitHub Desktop.
Save rgwozdz/6126926 to your computer and use it in GitHub Desktop.
Instructions for installing apache.
##################
# Apache Install #
##################
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install apache2
# Install PHP
sudo apt-get install libapache2-mod-php5
# Install PHP SQLite driver if you need it
sudo apt-get install sqlite php5-sqlite
# Enable PHP
sudo a2enmod php5
# Restart Apache
sudo service apache2 restart
# Install Git
sudo apt-get install git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment