Commit 93fc708ec86859b019fcf081db4927ae2675ce66

Authored by Caroline Salib
2 parents 28c7a288 5e4ab5a5
Exists in master

Merge branch 'master' into 'master'

Alterações realizadas referente a issue #25

* Adicionado link alternativo no Vagrantfile para download da box;
* Adicionado Vagrantfile no .gitignore.

See merge request !5
Showing 2 changed files with 2 additions and 1 deletions   Show diff stats
.gitignore
1 1 # Vagrant
2 2 /.vagrant
3   -
  3 +Vagrantfile
... ...
Vagrantfile
... ... @@ -4,6 +4,7 @@ VAGRANTFILE_API_VERSION = "2"
4 4 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
5 5 config.vm.box = "ieducar"
6 6 config.vm.box_url = "https://s3-us-west-2.amazonaws.com/portabilis2/public/ieducar/ieducar.box"
  7 + config.vm.box_download_insecure = "https://s3-us-west-2.amazonaws.com/portabilis2/public/ieducar/ieducar.box"
7 8  
8 9 #Compartilhando portas
9 10 config.vm.network "forwarded_port", guest: 80, host: 8080
... ...