Help .I am getting 502 error on browser after cloning a repo and doing
vagrant up. i am fairly new to vagrant and i dont know whether the problem
is with vagrant or the repo. the vagrant file is as below;
# -*- mode: ruby -*-
# vi: set ft=ruby :
PROJECT = "kala"
PROJECT_URL = "kala.example.com"
Vagrant.configure("2") do |config|
config.vm.box = "bento/ubuntu-16.04"
config.vm.network "forwarded_port", guest: 80, host: 9090
config.vm.synced_folder "../", "/srv/" + PROJECT + "-app"
config.vm.provider "virtualbox" do |vb|
vb.name = PROJECT
vb.customize ["modifyvm", :id, "--cableconnected1", "on"]
vb.memory = "1024"
end
config.vm.provision "shell", path: "provision/vagrant.sh", args:
[PROJECT, PROJECT_URL]
end
--
This mailing list is governed under the HashiCorp Community Guidelines -
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of
those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
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].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vagrant-up/513f68c6-7a6e-4eee-a900-9ce78cf8fe37%40googlegroups.com.