View | Details | Raw Unified | Return to bug 51294
Collapse All | Expand All

(-)services/univention-apache/conffiles/etc/apache2/conf-available/ucs.conf (-3 / +16 lines)
 Lines 1-8    Link Here 
1
@%@UCRWARNING=# @%@
1
@%@UCRWARNING=# @%@
2
2
3
MaxClients @%@apache2/maxclients@%@
3
@!@
4
ServerAdmin webmaster@@%@hostname@%@.@%@domainname@%@
4
mapping = {
5
ServerSignature On
5
	'ServerLimit': ('apache2/server-limit', None),
6
	'StartServers': ('apache2/start-servers', None),
7
	'MaxRequestWorkers': ('apache2/maxclients', None),
8
	'MinSpareThreads': ('apache2/min-spare-threads', None),
9
	'MaxSpareThreads': ('apache2/maxs-pare-threads', None),
10
	'ThreadsPerChild': ('apache2/threads-per-child', None),
11
	'ServerSignature': ('apache2/server-signature', 'On'),
12
	'ServerTokens': ('apache2/server-tokens', None),
13
	'ServerAdmin': ('apache2/server-admin', 'webmaster@%(hostname)s.%(domainname)s' % configRegistry),
14
}
15
for key, (ucr, default) in sorted(mapping.items()):
16
	if configRegistry.get(ucr, default):
17
		print('%s %s' % (key, configRegistry.get(ucr, default)))
18
@!@
6
19
7
# Possible values include: debug, info, notice, warn, error, crit,
20
# Possible values include: debug, info, notice, warn, error, crit,
8
# alert, emerg.
21
# alert, emerg.

Return to bug 51294