Skip to content

Commit b7b58d8

Browse files
schrejDaneEveritt
authored andcommitted
Improve the Vagrantfile a little (pterodactyl#1025)
1 parent 5839034 commit b7b58d8

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Vagrantfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
Vagrant.configure("2") do |config|
2-
config.vm.box = "ubuntu/xenial64"
2+
config.vm.box = "bento/ubuntu-16.04"
33

44
config.vm.synced_folder "./", "/var/www/html/pterodactyl",
55
owner: "www-data", group: "www-data"
66

7-
#config.vm.provision :file, source: ".dev/vagrant/pterdactyl.conf", destination: "/etc/nginx/sites-available/pterodactyl.conf"
8-
#config.vm.provision :file, source: ".dev/vagrant/pteroq.service", destination: "/etc/systemd/system/pteroq.service"
9-
#config.vm.provision :file, source: ".dev/vagrant/mailhog.service", destination: "/etc/systemd/system/mailhog.service"
10-
#config.vm.provision :file, source: ".dev/vagrant/.env", destination: "/var/www/html/pterodactyl/.env"
117
config.vm.provision :shell, path: ".dev/vagrant/provision.sh"
128

139
config.vm.network :private_network, ip: "192.168.50.2"
@@ -16,6 +12,6 @@ Vagrant.configure("2") do |config|
1612
config.vm.network :forwarded_port, guest: 3306, host: 53306
1713

1814
# Config for the vagrant-dns plugin (https://github.com/BerlinVagrant/vagrant-dns)
19-
config.dns.tld = "app"
20-
config.dns.patterns = [/^pterodactyl.app$/]
15+
config.dns.tld = "test"
16+
config.dns.patterns = [/^pterodactyl.test$/]
2117
end

0 commit comments

Comments
 (0)