29 lines
545 B
Django/Jinja
29 lines
545 B
Django/Jinja
# smb.conf
|
|
# matt-cloud default
|
|
|
|
# make sure to manually add configs in the smb.conf.d folder
|
|
# samba is dumb and can't do it automatically
|
|
# include = /etc/samba/smb.conf.d/new_item.conf
|
|
|
|
### smb.conf.d configs here
|
|
|
|
[global]
|
|
|
|
workgroup = HOME
|
|
netbios name = HOME
|
|
guest account = nobody
|
|
security = user
|
|
map to guest = bad user
|
|
|
|
|
|
[share]
|
|
path = /media/share
|
|
writable = yes
|
|
read only = no
|
|
only guest = yes
|
|
public = yes
|
|
guest ok = yes
|
|
guest only = yes
|
|
guest account = nobody
|
|
browsable = yes
|