Open artlife3 opened 7 years ago
@@ -34,12 +34,14 @@ Vagrant.configure("2") do |config|
config.vm.synced_folder "share", "/var/www/",
:create => true,
- owner: "vagrant",
- group: "vagrant",
- mount_options: ['dmode=777','fmode=666'],
- :nfs => false
+# owner: "vagrant",
+# group: "vagrant",
+# mount_options: ['dmode=777','fmode=666'],
+ mount_options: ['nolock,vers=3,tcp,noatime'],
+ :nfs => true
Permission errorの問題があります。
これはchmodで解決する方法が簡単です。
sudo chmod -R 777 *
Vagrant.configure('2') do |config|
config.winnfsd.uid = 1
config.winnfsd.gid = 1
end
Step1 : Changed to use vagrant's share folder