about summary refs log tree commit diff
path: root/Vagrantfile
diff options
context:
space:
mode:
authortrevDev() <trev@trevdev.ca>2018-09-16 11:49:15 -0700
committernightpool <nightpool@users.noreply.github.com>2018-09-16 14:49:15 -0400
commit8971bb8cf29ce940345cf306725dd3f71e8ffded (patch)
tree69d2d8ca468c749454f526016b3078f9cb7f612c /Vagrantfile
parent5aae71cf60ba436579e61a330d9cb5d9807ccdd2 (diff)
update vagrant configs (#8706)
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile14
1 files changed, 10 insertions, 4 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 57fec9e02..5e25efb80 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -85,6 +85,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
   config.vm.provider :virtualbox do |vb|
     vb.name = "mastodon"
     vb.customize ["modifyvm", :id, "--memory", "2048"]
+    # Increase the number of CPUs. Uncomment and adjust to
+    # increase performance
+    # vb.customize ["modifyvm", :id, "--cpus", "3"]
 
     # Disable VirtualBox DNS proxy to skip long-delay IPv6 resolutions.
     # https://github.com/mitchellh/vagrant/issues/1172
@@ -97,19 +100,22 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
 
   end
 
-  config.vm.hostname = "mastodon.dev"
-
   # This uses the vagrant-hostsupdater plugin, and lets you
-  # access the development site at http://mastodon.dev.
+  # access the development site at http://mastodon.local.
+  # If you change it, also change it in .env.vagrant before provisioning
+  # the vagrant server to update the development build.
+  #
   # To install:
   #   $ vagrant plugin install vagrant-hostsupdater
+  config.vm.hostname = "mastodon.local"
+
   if defined?(VagrantPlugins::HostsUpdater)
     config.vm.network :private_network, ip: "192.168.42.42", nictype: "virtio"
     config.hostsupdater.remove_on_suspend = false
   end
 
   if config.vm.networks.any? { |type, options| type == :private_network }
-    config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp']
+    config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'vers=3', 'tcp', 'actimeo=1']
   else
     config.vm.synced_folder ".", "/vagrant"
   end