我是流浪汉的新手,所以我尝试使用puphpet来配置我的VM
但我不明白为什么我的文件夹不与我的VM的/ var / www同步。 但我知道当我更新或更改我的文件夹中的某些内容时,我的VM的/ vagrant文件夹中的内容是同步的。
你能告诉我如何同步/ var / www / html / / vagrant在我的VM中同步吗?
这是我的同步文件夹puphpet的config.yml:
synced_folder:
vflsf_mny3nbub9zel:
source: ./
target: /var/www
sync_type: rsync
smb:
smb_host: ''
smb_username: ''
smb_password: ''
rsync:
args:
- '--verbose'
- '--archive'
- '-z'
exclude:
- .vagrant/
- .git/
auto: 'true'
owner: www-data
group: www-data
非常感谢并抱歉我的英文:/
答案 0 :(得分:0)
在Vagrantfile为的主机中尝试以下操作(在config.yaml中用'source'表示):
$ vagrant rsync-auto
这会将添加/更改的文件从主机同步到来宾vm。