diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-09-01 13:50:17 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-09-01 15:23:10 +1000 |
commit | 8d9665d5d15954cd36d1c385384520ce15ab4857 (patch) | |
tree | 2061f925d14ef9f11f59c0192e6bfb4d30a228f8 | |
parent | 4d6c120fb7a9aef80e83f00b155ff93e96034897 (diff) | |
download | samba-8d9665d5d15954cd36d1c385384520ce15ab4857.tar.gz samba-8d9665d5d15954cd36d1c385384520ce15ab4857.tar.bz2 samba-8d9665d5d15954cd36d1c385384520ce15ab4857.zip |
s4-services: disable the web server by default
the web server is not being actively maintained, and is causing
problems with memory errors (as shown by valgrind). It is better to
disable this until it can get some TLC
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
-rw-r--r-- | source4/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index e4f1c8598d..14cc479911 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -3290,7 +3290,7 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx) lpcfg_do_global_parameter(lp_ctx, "max connections", "-1"); lpcfg_do_global_parameter(lp_ctx, "dcerpc endpoint servers", "epmapper srvsvc wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi winreg dssetup unixinfo browser eventlog6 backupkey"); - lpcfg_do_global_parameter(lp_ctx, "server services", "smb rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd kcc dnsupdate web"); + lpcfg_do_global_parameter(lp_ctx, "server services", "smb rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd kcc dnsupdate"); lpcfg_do_global_parameter(lp_ctx, "ntptr providor", "simple_ldb"); /* the winbind method for domain controllers is for both RODC auth forwarding and for trusted domains */ |