私はWordPress開発にTrellisを使用しています。同期したフォルダー内のファイル(またはディレクトリ)のアクセス許可を変更するのが難しいのを除いて、それはうまく機能します。
通常、デフォルトの権限設定で問題ありません。ただし、メイン(NFS)同期ディレクトリのサブディレクトリの一部に書き込み権限を与える必要がある場合があります。
これはVMのメイン構成にAnsibleプレイブックを使用するVagrantfileです(私はVirtualBoxを使用しています)。私はRubyプログラマではありませんし、Ansibleを使用したこともありませんが、その外観からすると、Vagrantfile
ファイルのアクセス権が設定されている部分は次のようになります。
if Vagrant::Util::Platform.windows? and !Vagrant.has_plugin? 'vagrant-winnfsd'
wordpress_sites.each_pair do |name, site|
config.vm.synced_folder local_site_path(site), remote_site_path(name, site), owner: 'vagrant', group: 'www-data', mount_options: ['dmode=776', 'fmode=775']
end
config.vm.synced_folder ANSIBLE_PATH, ANSIBLE_PATH_ON_VM, mount_options: ['dmode=755', 'fmode=644']
config.vm.synced_folder File.join(ANSIBLE_PATH, 'bin'), bin_path, mount_options: ['dmode=755', 'fmode=755']
else
if !Vagrant.has_plugin? 'vagrant-bindfs'
fail_with_message "vagrant-bindfs missing, please install the plugin with this command:\nvagrant plugin install vagrant-bindfs"
else
wordpress_sites.each_pair do |name, site|
config.vm.synced_folder local_site_path(site), nfs_path(name), type: 'nfs'
config.bindfs.bind_folder nfs_path(name), remote_site_path(name, site), u: 'vagrant', g: 'www-data', o: 'nonempty'
end
config.vm.synced_folder ANSIBLE_PATH, '/ansible-nfs', type: 'nfs'
config.bindfs.bind_folder '/ansible-nfs', ANSIBLE_PATH_ON_VM, o: 'nonempty', p: '0644,a+D'
config.bindfs.bind_folder bin_path, bin_path, perms: '0755'
end
end
必要なときに特定のファイルやフォルダーへのアクセス許可を制御できるように、このファイルに変更を加える方法を教えてください。ホストマシンのvagrant同期フォルダー内の権限を変更しても仮想マシンには反映されないため、少なくともVagrantfileを変更してから再プロビジョニングすることでそれを実行できる必要があります。
これを簡単に実現するにはどうすればよいですか?