]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-httpd.conf
- split configs to configdir
[packages/apache1.git] / apache1-httpd.conf
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-*/httpd.conf* for comments on the directives.
8 ###
9
10 ServerType standalone
11 ServerRoot "/etc/apache"
12
13 ResourceConfig  /dev/null
14 AccessConfig    /dev/null
15
16 LockFile /var/run/apache.lock
17 PidFile /var/run/apache.pid
18 ScoreBoardFile /var/run/apache.scoreboard
19 ErrorLog /var/log/apache/error_log
20 LogLevel warn
21
22 AccessFileName .htaccess
23 UseCanonicalName On
24 DefaultType text/plain
25
26 HostnameLookups Off
27 ServerSignature Email
28
29 User  http
30 Group 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.
35 ServerAdmin root@localhost
36
37 #ServerName localhost
38
39 # Include other modules and packages config.
40 Include conf.d/*.conf
41
42
43 ###
44 ### IP Address/Port
45 ###
46 #BindAddress *
47 Listen 80
48
49 ###
50 ### Performance settings Section
51 ###
52
53 ### Timeout
54 # The number of seconds before receives and sends time out.
55 Timeout                 300
56
57 ### KeepAlive
58 # Whether or not to allow persistent connections (more than one request per
59 # connection). Set to "Off" to deactivate.
60 KeepAlive               On
61
62 ### MaxKeepAliveRequests
63 # The maximum number of requests to allow during a persistent connection.
64 # Set to 0 to allow an unlimited amount. We recommend you leave this number
65 # high, for maximum performance.
66
67 MaxKeepAliveRequests    100
68
69 ### KeepAliveTimeout
70 # Number of seconds to wait for the next request from the same client on the
71 # same connection.
72
73 KeepAliveTimeout        15
74
75 # StartServers: number of server processes to start
76 # MinSpareServers: minimum number of server processes which are kept spare
77 # MaxSpareServers: maximum number of server processes which are kept spare
78 # MaxClients: maximum number of server processes allowed to start
79 # MaxRequestsPerChild: maximum number of requests a server process serves
80 StartServers 5
81 MinSpareServers 5
82 MaxSpareServers 10
83 MaxClients 150
84 MaxRequestsPerChild 30
85
86 # These lines here are for packages which still use apxs to activate module.
87 # LoadModule access_module      modules/mod_access.so
88 # AddModule mod_foo.c
89
90 # vim: filetype=apache ts=4 sw=4 et
This page took 0.04514 seconds and 4 git commands to generate.