I followed the setup guide and everything worked.
I am trying to use a different box now that has php, phpmyadmin and mysql
though.
so I tried xplore/debian-6.0.9
I added the box and it downloaded and it is running.
here is my vagrantfile:
Vagrant.configure("2") do |config|
config.vm.box = "xplore/debian-6.0.9"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network :forwarded_port, host: 4567, guest: 80
end
I am able to access phpmyadmin in my browser
at http://127.0.0.1:4567/phpmyadmin/
however when I try to access my index file by visiting http://127.0.0.1 I
receive a 404
I'm not sure what else I can do..
This is my bootstrap file:
#!/usr/bin/env bash
apt-get update
apt-get install -y apache2
rm -rf /var/www
ln -fs /vagrant /var/www
Any help is appreciated.
--
You received this message because you are subscribed to the Google Groups
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.