forked from illacceptanything/illacceptanything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVagrantfile
25 lines (22 loc) · 896 Bytes
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Hi, I'm evride and I'm a pirate vagrant so I am commandeering this file
# I'm currently in Odessa, TX trying to get to El Paso by hitchhiking.
# Can somebody give me a ride?
# In exchange I'll give you five (5) possibly-accurate facts about cats
# kthxbye
Vagrant.configure("2") do |config|
config.vm.box = "puphpet/debian75-x32"
config.vm.provision :shell, :inline => <<-END
export ROOT_DBUSER_PASSWORD="root"
export DBUSER="illacceptanything"
export DBUSER_PASSWORD="illacceptanypasswords"
export DBNAME="illacceptanyunsanitizedinputs"
set -e
for s in /vagrant/provisioning/??-*.sh ; do $s ; done
END
config.vm.network :forwarded_port, host: 8080, guest: 80 #Apache server
config.vm.network "private_network", ip: "10.10.10.80"
config.vm.hostname = "illacceptanything.dev"
config.vm.box_check_update = false
end