configuration-templates – Blame information for rev 83

Subversion Repositories:
Rev:
Rev Author Line No. Line
81 office 1 ###########################################################################
2 ## Copyright (C) Wizardry and Steamworks 2017 - License: GNU GPLv3 ##
3 ## Please see: http://www.gnu.org/licenses/gpl.html for legal details, ##
4 ## rights of fair usage, the disclaimer and warranty conditions. ##
5 ###########################################################################
6 ## Optimized standalone configuration template for Samba servers. ##
7 ## ##
8 ## Ideal for: ##
9 ## * Virtual machine file sharing ##
10 ## ##
11 ## Requirements: ##
12 ## * Samba 3.x ##
13 ## * PAM Samba Password Module (Debian: libpam-smbpass) ##
14 ## ##
15 ## File placement layout: ##
16 ## / ##
17 ## `-- etc ##
18 ## `-- samba ##
19 ## |-- smb.conf ##
20 ## |-- smb.conf.local ##
21 ## `-- smb.conf.share ##
22 ## ##
23 ## Files Description: ##
24 ## * /etc/samba/smb.conf (this file) ##
25 ## * /etc/samba/smb.conf.local (local server-site settings) ##
26 ## * /etc/samba/smb.conf.share (samba shares go here) ##
27 ## ##
28 ###########################################################################
29  
30 [global]
31 bind interfaces only = yes
32 name resolve order = lmhosts host wins bcast
33  
34 # Standalone.
35 preferred master = yes
36 security = USER
37 # For compatibility with scripts.
38 passdb backend = smbpasswd
39 map to guest = bad user
82 office 40 # For compatibility with clients.
41 client use spnego = no
42 client ntlmv2 auth = no
81 office 43  
83 office 44 # Better compatibility with OSX.
45 unix extensions = no
46  
81 office 47 # Safe Tweaks
83 office 48 socket options=SO_RCVBUF=131072 SO_SNDBUF=131072 TCP_NODELAY IPTOS_LOWDELAY
81 office 49 use sendfile = true
83 office 50 max xmit = 65535
51 max connections = 65535
52 max open files = 65535
53 min receivefile size = 16384
81 office 54 aio read size = 16384
55 aio write size = 16384
83 office 56 read raw = yes
57 write raw = yes
58 getwd cache = yes
59 dead time = 15
81 office 60 kernel oplocks = yes
83 office 61 server multi channel support = yes
81 office 62  
63 # Logging
64 log file = /var/log/samba/log.%m
65 log level = 2
66  
67 # Include local settings.
68 include = /etc/samba/smb.conf.local
69  
70 # Include shares.
71 include = /etc/samba/smb.conf.share