Skip to content

Instantly share code, notes, and snippets.

@invad0r
Created January 31, 2017 16:28
Show Gist options
  • Save invad0r/ea2ffa60b13db983ac996eec8d80cd22 to your computer and use it in GitHub Desktop.
Save invad0r/ea2ffa60b13db983ac996eec8d80cd22 to your computer and use it in GitHub Desktop.
Vagrantfile LAMP
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# config.vm.box = "ubuntu/precise64"
config.vm.box = "ubuntu/trusty64"
# config.vm.box = "ubuntu/precise64"
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine. In the example below,
# accessing "localhost:8080" will access port 80 on the guest machine.
# config.vm.network "forwarded_port", guest: 80, host: 8080
# Create a private network, which allows host-only access to the machine
# using a specific IP.
config.vm.network "private_network", ip: "192.168.33.44"
# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
# your network.
# config.vm.network "public_network"
# Share an additional folder to the guest VM. The first argument is
# the path on the host to the actual folder. The second argument is
# the path on the guest to mount the folder. And the optional third
# argument is a set of non-required options.
config.vm.synced_folder "./.", "/var/www/html"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.
# Example for VirtualBox:
#
# config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
#
# # Customize the amount of memory on the VM:
# vb.memory = "1024"
# end
#
# View the documentation for the provider you are using for more
# information on available options.
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
config.vm.provision "shell", inline: <<-SHELL
debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password password rootpass'
debconf-set-selections <<< 'mysql-server-5.5 mysql-server/root_password_again password rootpass'
apt-get -qq update
apt-get install -y vim git mysql-server apache2 php5 php5-mysql
mysql -uroot -prootpass -e"CREATE USER 'wordpressuser'@'localhost' IDENTIFIED BY 'wordpresspass'"
mysql -uroot -prootpass -e"CREATE DATABASE wordpress"
mysql -uroot -prootpass -e"GRANT ALL ON wordpress.* TO 'wordpressuser'@'localhost'"
mysql -uroot -prootpass -e"flush privileges"
service apache2 restart
sed -i '/force_color_prompt=/s/^#//g' .bashrc
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment