add support for vagrant-dns

This commit is contained in:
Jakob Schrettenbrunner 2017-06-12 13:14:44 +02:00
parent e98e4932be
commit 947c8e8e70
2 changed files with 6 additions and 0 deletions

3
Vagrantfile vendored
View file

@ -15,4 +15,7 @@ Vagrant.configure("2") do |config|
config.vm.network :forwarded_port, guest: 8025, host: 58025
config.vm.network :forwarded_port, guest: 3306, host: 53306
# Config for the vagrant-dns plugin (https://github.com/BerlinVagrant/vagrant-dns)
config.dns.tld = "app"
config.dns.patterns = [/^pterodactyl.app$/]
end