Skip to content

Commit 48edd10

Browse files
author
Matthew S. Plant
committed
Added VirtualBox shared directory workaround, increased virtual memory, added phpinfo file and updated .gitignore file.
1 parent 6b4800d commit 48edd10

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
.idea
12
.vagrant
23
puppet
34
vendor
4-
www
5+
www/magento
6+

Vagrantfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Vagrant.configure("2") do |config|
3737
# the path on the guest to mount the folder. And the optional third
3838
# argument is a set of non-required options.
3939
# config.vm.synced_folder ".", "/vagrant" # DEFAULT
40-
# config.vm.synced_folder ".", "/vagrant", :nfs => true
40+
config.vm.synced_folder ".", "/vagrant", :extra => "dmode=777,fmode=777" # VirtualBox shared directory workaround
4141

4242
# Set the virtual machine host name
4343
config.vm.hostname = "magento.localhost"
@@ -65,10 +65,13 @@ Vagrant.configure("2") do |config|
6565
# vb.gui = true
6666

6767
# set virtual machine name
68-
vb.name = "magento-dev-env"
68+
vb.name = "magento-devops"
6969

7070
# increase virtual machine memory
71-
vb.customize ["modifyvm", :id, "--memory", "1024"]
71+
#vb.customize ["modifyvm", :id, "--memory", "1024"]
72+
#vb.customize ["modifyvm", :id, "--memory", "2048"]
73+
vb.customize ["modifyvm", :id, "--memory", "4096"]
74+
#vb.customize ["modifyvm", :id, "--memory", "9192"]
7275
end
7376

7477

www/phpinfo.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
phpinfo();
3+
?>

0 commit comments

Comments
 (0)