2016-04-08 4 views
0

Ich habe meine/etc/hosts-Datei geändert, um Live-URLs an meine lokale Vagabunden-Box umzuleiten, was bis vor kurzem gut funktionierte.Vagrant/etc/hosts

Ich habe so etwas in meinem Host-Datei

example.be  10.11.10.12 

Ich muss dies tun, weil ich eine dritte Partei bin mit JavaScript SDK, die auf die Live-Domäne verknüpft ist.

Ich denke, das wichtigste Material in der Konfigurationsdatei ist:

Vagrant.configure(2) do |config| 
    # Every Vagrant development environment requires a box. You can search for 
    # boxes at https://atlas.hashicorp.com/search. 
    config.vm.box = "bento/debian-7.8" 

    config.vm.network "forwarded_port", guest: 80, host: 3001 
    config.vm.network "private_network", ip: "10.11.10.12" 

    config.ssh.forward_agent = true 

    config.vm.synced_folder ".", "/vagrant", type: "nfs" # NFS because VirtualBox shared VM is too slow 

    config.vm.provider "virtualbox" do |vb| 
    # This all might be a bit excessive, but it'll run ;) 
    vb.memory = 2048 
    vb.cpus = 4 

    # The internet says these changes improve VM performance 
    vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] 
    vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"] 
    vb.customize ["modifyvm", :id, "--ioapic", "on"] 
    end 
end 

Ich habe ähnliche Fragen gefunden, aber keiner genau meine Frage beantworten. Die Sache ist, es funktionierte vor und jetzt tut es nicht, dass der schwierigste Teil für mich ...

Zur Info: Ich bin mit OS X Yosemite 10.10.5

Antwort

0

Okay, ich fühle mich jetzt dumm, es scheint, ich brauche, um nur die Dinge um in meiner hosts-Datei ...

Also sollte ich haben:

10.11.10.12  example.be 

Seltsam gearbeitet, though.

Wie auch immer, zurück zur Arbeit. Weitergehen, hier nichts zu sehen.