Created
December 27, 2015 21:01
-
-
Save adamjstevenson/bfd000e77d9e870f8b33 to your computer and use it in GitHub Desktop.
A simple PHP/MySQL/phpMyAdmin Vagrant provisioner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Use single quotes instead of double quotes to make it work with special-character passwords | |
PASSWORD='my_password' | |
# update / upgrade | |
sudo apt-get update | |
sudo apt-get -y upgrade | |
# install apache 2.5 and php 5.5 | |
sudo apt-get install -y apache2 | |
sudo apt-get install -y php5 | |
# install mysql and give password to installer | |
sudo debconf-set-selections <<< "mysql-server mysql-server/root_password password $PASSWORD" | |
sudo debconf-set-selections <<< "mysql-server mysql-server/root_password_again password $PASSWORD" | |
sudo apt-get -y install mysql-server | |
sudo apt-get install php5-mysql | |
# install phpmyadmin and give password(s) to installer | |
# for simplicity I'm using the same password for mysql and phpmyadmin | |
sudo debconf-set-selections <<< "phpmyadmin phpmyadmin/dbconfig-install boolean true" | |
sudo debconf-set-selections <<< "phpmyadmin phpmyadmin/app-password-confirm password $PASSWORD" | |
sudo debconf-set-selections <<< "phpmyadmin phpmyadmin/mysql/admin-pass password $PASSWORD" | |
sudo debconf-set-selections <<< "phpmyadmin phpmyadmin/mysql/app-pass password $PASSWORD" | |
sudo debconf-set-selections <<< "phpmyadmin phpmyadmin/reconfigure-webserver multiselect apache2" | |
sudo apt-get -y install phpmyadmin | |
# setup hosts file | |
VHOST=$(cat <<EOF | |
<VirtualHost *:80> | |
DocumentRoot "/var/www/html/" | |
<Directory "/var/www/html/"> | |
AllowOverride All | |
Require all granted | |
</Directory> | |
</VirtualHost> | |
EOF | |
) | |
echo "${VHOST}" > /etc/apache2/sites-available/000-default.conf | |
# enable mod_rewrite | |
sudo a2enmod rewrite | |
# restart apache | |
service apache2 restart | |
# install git | |
sudo apt-get -y install git | |
# install curl | |
sudo apt-get -y install curl | |
# install nano | |
sudo apt-get -y install nano | |
# install Composer | |
curl -s https://getcomposer.org/installer | php | |
mv composer.phar /usr/local/bin/composer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment