I am new to ACL and I am trying to accomplish the following. My setup is an LXD container, it runs NGiNX on it using the user nginx and group nginx. I have the following two users
These two will need to have access to directory /var/www/data that would be shared across the networking via samba but so does nginx as it will too
I was told that ACL would be a good option since I don't have to worry about making sure all users needing access. Currently nginx has chown over /var/www in total. I have ran the following commands:
Code:
setfacl -m u:Jillsmb:rwx /var/www/data
Code:
setfacl -m u:Bobsmb:rwx /var/www/data
My samba config:
Code:
[officeshare]
comment = Office Share
path = /var/www/data
valid users = Jillsmb, Bobsmb
read only = no
create mask = 0777
writeable = yes
browsable = yes
But I am still getting permission denied when accessing from Windows 10. Where am I messing up?
Bookmarks