forked from mozilla/persona
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVagrantfile
More file actions
25 lines (16 loc) · 770 Bytes
/
Vagrantfile
File metadata and controls
25 lines (16 loc) · 770 Bytes
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
Vagrant::Config.run do |config|
config.vm.box = "browserid_3.box"
config.vm.box_url = "http://people.mozilla.org/~aking/browserid/browserid_3.box"
# name vagrant desktop
config.vm.forward_port("readme", 10000, 10000)
config.vm.forward_port("verifier", 10001, 10001)
config.vm.forward_port("server", 10002, 10002)
# Increase vagrant's patience during hang-y CentOS bootup
# see: https://github.com/jedi4ever/veewee/issues/14
config.ssh.max_tries = 50
config.ssh.timeout = 300
# nfs needs to be explicitly enabled to run.
config.vm.share_folder("v-root", "/home/vagrant/browserid", ".")
# Add to /etc/hosts: 33.33.33.27 dev.browserid.org
config.vm.network "33.33.33.27"
end