Created
January 12, 2012 19:37
-
-
Save bradymholt/1602589 to your computer and use it in GitHub Desktop.
Example Samba config file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Global Parameters | |
[global] | |
workgroup = WORKGROUP | |
netbios name = POGO-SERVER | |
follow symlinks = yes | |
wide links = yes | |
security = user | |
map to guest = bad user | |
unix extensions = no | |
socket options = TCP_NODELAY IPTOS_LOWDELAY | |
log file = /var/log/samba/%m.log | |
[Media] | |
path = /srv/samba/media | |
read only = no | |
writable = yes | |
guest ok = yes | |
force user = public | |
[Private] | |
path = /srv/samba/private | |
read only = no | |
writable = yes | |
guest ok = no | |
valid users = jdoe |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment