You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
after deploy project from repository i got an error( mount: 'rsync'): 1 exception(s):
Exception #0 (Magento\Framework\Exception\FileSystemException): The path "/home/vagrant/magento/pub/static/." is not writable.
after deploy project from repository i got an error( mount: 'rsync'):
1 exception(s):
Exception #0 (Magento\Framework\Exception\FileSystemException): The path "/home/vagrant/magento/pub/static/." is not writable.
adding this code to vagrantfile solves problem:
Bindfs options
config.bindfs.default_options = {
force_user: 'vagrant',
force_group: 'www-data',
perms: 'u=rwx:g=rwx:o=rx'
}
The text was updated successfully, but these errors were encountered: