Skip to content

Instantly share code, notes, and snippets.

@Nav-Appaiya
Forked from dilantha/ubuntu_lamp.sh
Last active August 29, 2015 14:13
Show Gist options
  • Save Nav-Appaiya/a184f59e6adda690953f to your computer and use it in GitHub Desktop.
Save Nav-Appaiya/a184f59e6adda690953f to your computer and use it in GitHub Desktop.
# Apache
sudo aptitude install apache2 apache2-mpm-prefork apache2-utils apache2.2-common
sudo a2enmod rewrite
# Server name
echo "ServerName localhost" | sudo tee /etc/apache2/conf.d/fqdn
# Restart Apache
sudo service apache2 restart
# PHP
sudo aptitude install libapache2-mod-php5 php5-cli php5-mysql php5-curl php5-mcrypt php5-gd php5-xcache php5-xdebug
# PHP development settings
sudo mv /etc/php5/apache2/php.ini /etc/php5/apache2/php.ini.bak
sudo cp -s /usr/share/php5/php.ini-development /etc/php5/apache2/php.ini
# Apache user dir
# http://www.techytalk.info/enable-userdir-apache-module-ubuntu-debian-based-linux-distributions/
sudo a2enmod userdir
sudo service apache2 restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment