]> git.pld-linux.org Git - packages/apache1.git/blame_incremental - apache1-httpd.conf
- typo
[packages/apache1.git] / apache1-httpd.conf
... / ...
CommitLineData
1### $Id$
2###
3### Main Configuration Section
4### You really shouldn't change these settings unless you're a guru
5###
6### This config aims to be clean and readable, you should see
7### /usr/share/doc/apache1-*/apache.conf.dist.gz for comments on the directives.
8###
9
10ServerType standalone
11ServerRoot "/etc/apache"
12
13ResourceConfig /dev/null
14AccessConfig /dev/null
15
16LockFile /var/run/apache.lock
17PidFile /var/run/apache.pid
18ScoreBoardFile /var/run/apache.scoreboard
19ErrorLog /var/log/apache/error_log
20LogLevel warn
21
22AccessFileName .htaccess
23UseCanonicalName On
24DefaultType text/plain
25
26HostnameLookups Off
27ServerSignature Email
28
29User http
30Group http
31
32# ServerAdmin: Your address, where problems with the server should be
33# e-mailed. This address appears on some server-generated pages, such
34# as error documents.
35ServerAdmin root@localhost
36
37#ServerName localhost
38
39# Include other modules and packages config.
40Include conf.d/*.conf
41
42
43###
44### IP Address/Port
45###
46#BindAddress *
47Listen 80
48
49# Listen can take two arguments.
50# (this is an extension for supporting IPv6 addresses)
51#Listen :: 80
52#Listen 0.0.0.0 80
53
54###
55### Performance settings Section
56###
57
58### Timeout
59# The number of seconds before receives and sends time out.
60Timeout 300
61
62### KeepAlive
63# Whether or not to allow persistent connections (more than one request per
64# connection). Set to "Off" to deactivate.
65KeepAlive On
66
67### MaxKeepAliveRequests
68# The maximum number of requests to allow during a persistent connection.
69# Set to 0 to allow an unlimited amount. We recommend you leave this number
70# high, for maximum performance.
71
72MaxKeepAliveRequests 100
73
74### KeepAliveTimeout
75# Number of seconds to wait for the next request from the same client on the
76# same connection.
77
78KeepAliveTimeout 15
79
80# StartServers: number of server processes to start
81# MinSpareServers: minimum number of server processes which are kept spare
82# MaxSpareServers: maximum number of server processes which are kept spare
83# MaxClients: maximum number of server processes allowed to start
84# MaxRequestsPerChild: maximum number of requests a server process serves
85StartServers 5
86MinSpareServers 5
87MaxSpareServers 10
88MaxClients 150
89MaxRequestsPerChild 30
90
91# These lines here are for packages which still use apxs to activate module.
92# LoadModule access_module modules/mod_access.so
93# AddModule mod_foo.c
94
95# vim: filetype=apache ts=4 sw=4 et
This page took 0.032206 seconds and 4 git commands to generate.