]> git.pld-linux.org Git - packages/apache.git/blob - apache-common.conf
- removed processed configs
[packages/apache.git] / apache-common.conf
1
2 # TODO
3 # - split each section to module's config fragment
4 # - move LoadModule's to each module's config
5 #
6 #
7 # Dynamic Shared Object (DSO) Support
8 #
9 # To be able to use the functionality of a module which was built as a DSO you
10 # have to place corresponding `LoadModule' lines at this location so the
11 # directives contained in it are actually available _before_ they are used.
12 # Statically compiled modules (those listed by `httpd -l') do not need
13 # to be loaded here.
14 #
15 # Example:
16 # LoadModule foo_module modules/mod_foo.so
17 #
18 LoadModule authn_file_module modules/mod_authn_file.so
19 LoadModule authn_dbm_module modules/mod_authn_dbm.so
20 LoadModule authn_anon_module modules/mod_authn_anon.so
21 LoadModule authn_dbd_module modules/mod_authn_dbd.so
22 LoadModule authn_default_module modules/mod_authn_default.so
23 LoadModule authn_alias_module modules/mod_authn_alias.so
24 LoadModule authz_host_module modules/mod_authz_host.so
25 LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
26 LoadModule authz_user_module modules/mod_authz_user.so
27 LoadModule authz_dbm_module modules/mod_authz_dbm.so
28 LoadModule authz_owner_module modules/mod_authz_owner.so
29 LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
30 LoadModule authz_default_module modules/mod_authz_default.so
31 LoadModule auth_basic_module modules/mod_auth_basic.so
32 LoadModule dbd_module modules/mod_dbd.so
33 LoadModule bucketeer_module modules/mod_bucketeer.so
34 LoadModule dumpio_module modules/mod_dumpio.so
35 LoadModule echo_module modules/mod_echo.so
36 LoadModule case_filter_module modules/mod_case_filter.so
37 LoadModule case_filter_in_module modules/mod_case_filter_in.so
38 LoadModule ext_filter_module modules/mod_ext_filter.so
39 LoadModule include_module modules/mod_include.so
40 LoadModule filter_module modules/mod_filter.so
41 LoadModule log_config_module modules/mod_log_config.so
42 LoadModule log_forensic_module modules/mod_log_forensic.so
43 LoadModule logio_module modules/mod_logio.so
44 LoadModule env_module modules/mod_env.so
45 LoadModule mime_magic_module modules/mod_mime_magic.so
46 LoadModule cern_meta_module modules/mod_cern_meta.so
47 LoadModule ident_module modules/mod_ident.so
48 LoadModule setenvif_module modules/mod_setenvif.so
49 LoadModule version_module modules/mod_version.so
50 LoadModule optional_hook_export_module modules/mod_optional_hook_export.so
51 LoadModule optional_hook_import_module modules/mod_optional_hook_import.so
52 LoadModule optional_fn_import_module modules/mod_optional_fn_import.so
53 LoadModule optional_fn_export_module modules/mod_optional_fn_export.so
54 LoadModule mime_module modules/mod_mime.so
55 LoadModule asis_module modules/mod_asis.so
56 LoadModule cgi_module modules/mod_cgi.so
57 LoadModule negotiation_module modules/mod_negotiation.so
58 LoadModule imagemap_module modules/mod_imagemap.so
59 LoadModule speling_module modules/mod_speling.so
60 LoadModule alias_module modules/mod_alias.so
61
62 # DocumentRoot: The directory out of which you will serve your
63 # documents. By default, all requests are taken from this directory, but
64 # symbolic links and aliases may be used to point to other locations.
65 #
66 DocumentRoot "/home/services/httpd/html"
67
68 # Each directory to which Apache has access can be configured with respect
69 # to which services and features are allowed and/or disabled in that
70 # directory (and its subdirectories).
71 #
72 # First, we configure the "default" to be a very restrictive set of
73 # features.
74 #
75 <Directory />
76     Options FollowSymLinks
77     AllowOverride None
78     Order deny,allow
79     Deny from all
80 </Directory>
81
82 #
83 # This should be changed to whatever you set DocumentRoot to.
84 #
85 <Directory "/home/services/httpd/html">
86     #
87     # Possible values for the Options directive are "None", "All",
88     # or any combination of:
89     #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
90     #
91     # Note that "MultiViews" must be named *explicitly* --- "Options All"
92     # doesn't give it to you.
93     #
94     # The Options directive is both complicated and important.  Please see
95     # http://httpd.apache.org/docs/2.2/mod/core.html#options
96     # for more information.
97     #
98     Options Indexes FollowSymLinks
99
100     #
101     # AllowOverride controls what directives may be placed in .htaccess files.
102     # It can be "All", "None", or any combination of the keywords:
103     #   Options FileInfo AuthConfig Limit
104     #
105     AllowOverride None
106
107     #
108     # Controls who can get stuff from this server.
109     #
110     Order allow,deny
111     Allow from all
112
113 </Directory>
114
115 #
116 # DirectoryIndex: sets the file that Apache will serve if a directory
117 # is requested.
118 #
119 <IfModule dir_module>
120     DirectoryIndex index.html
121 </IfModule>
122
123 #
124 # The following lines prevent .htaccess and .htpasswd files from being
125 # viewed by Web clients.
126 #
127 <FilesMatch "^\.ht">
128     Order allow,deny
129     Deny from all
130 </FilesMatch>
131
132 <IfModule log_config_module>
133     #
134     # The following directives define some format nicknames for use with
135     # a CustomLog directive (see below).
136     #
137     LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
138     LogFormat "%h %l %u %t \"%r\" %>s %b" common
139
140     <IfModule logio_module>
141       # You need to enable mod_logio.c to use %I and %O
142       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
143     </IfModule>
144
145     #
146     # The location and format of the access logfile (Common Logfile Format).
147     # If you do not define any access logfiles within a <VirtualHost>
148     # container, they will be logged here.  Contrariwise, if you *do*
149     # define per-<VirtualHost> access logfiles, transactions will be
150     # logged therein and *not* in this file.
151     #
152     CustomLog /var/log/httpd/access_log common
153
154     #
155     # If you prefer a logfile with access, agent, and referer information
156     # (Combined Logfile Format) you can use the following directive.
157     #
158     #CustomLog /var/log/httpd/access_log combined
159 </IfModule>
160
161 <IfModule alias_module>
162     #
163     # Redirect: Allows you to tell clients about documents that used to
164     # exist in your server's namespace, but do not anymore. The client
165     # will make a new request for the document at its new location.
166     # Example:
167     # Redirect permanent /foo http://www.example.com/bar
168
169     #
170     # Alias: Maps web paths into filesystem paths and is used to
171     # access content that does not live under the DocumentRoot.
172     # Example:
173     # Alias /webpath /full/filesystem/path
174     #
175     # If you include a trailing / on /webpath then the server will
176     # require it to be present in the URL.  You will also likely
177     # need to provide a <Directory> section to allow access to
178     # the filesystem path.
179
180     #
181     # ScriptAlias: This controls which directories contain server scripts.
182     # ScriptAliases are essentially the same as Aliases, except that
183     # documents in the target directory are treated as applications and
184     # run by the server when requested rather than as documents sent to the
185     # client.  The same rules about trailing "/" apply to ScriptAlias
186     # directives as to Alias.
187     #
188     ScriptAlias /cgi-bin/ "/home/services/httpd/cgi-bin/"
189
190 </IfModule>
191
192 <IfModule cgid_module>
193     #
194     # ScriptSock: On threaded servers, designate the path to the UNIX
195     # socket used to communicate with the CGI daemon of mod_cgid.
196     #
197     #Scriptsock /var/run/cgisock
198 </IfModule>
199
200 #
201 # "/home/services/httpd/cgi-bin" should be changed to whatever your ScriptAliased
202 # CGI directory exists, if you have that configured.
203 #
204 <Directory "/home/services/httpd/cgi-bin">
205     AllowOverride None
206     Options None
207     Order allow,deny
208     Allow from all
209 </Directory>
210
211 <IfModule mime_module>
212     #
213     # TypesConfig points to the file containing the list of mappings from
214     # filename extension to MIME-type.
215     #
216         TypesConfig /etc/mime.types
217
218     #
219     # AddType allows you to add to or override the MIME configuration
220     # file specified in TypesConfig for specific file types.
221     #
222     #AddType application/x-gzip .tgz
223     #
224     # AddEncoding allows you to have certain browsers uncompress
225     # information on the fly. Note: Not all browsers support this.
226     #
227     #AddEncoding x-compress .Z
228     #AddEncoding x-gzip .gz .tgz
229     #
230     # If the AddEncoding directives above are commented-out, then you
231     # probably should define those extensions to indicate media types:
232     #
233     AddType application/x-compress .Z
234     AddType application/x-gzip .gz .tgz
235
236     #
237     # AddHandler allows you to map certain file extensions to "handlers":
238     # actions unrelated to filetype. These can be either built into the server
239     # or added with the Action directive (see below)
240     #
241     # To use CGI scripts outside of ScriptAliased directories:
242     # (You will also need to add "ExecCGI" to the "Options" directive.)
243     #
244     #AddHandler cgi-script .cgi
245
246     # For files that include their own HTTP headers:
247     #AddHandler send-as-is asis
248
249     # For server-parsed imagemap files:
250     #AddHandler imap-file map
251
252     # For type maps (negotiated resources):
253     #AddHandler type-map var
254
255     #
256     # Filters allow you to process content before it is sent to the client.
257     #
258     # To parse .shtml files for server-side includes (SSI):
259     # (You will also need to add "Includes" to the "Options" directive.)
260     #
261     #AddType text/html .shtml
262     #AddOutputFilter INCLUDES .shtml
263 </IfModule>
264
265 #
266 # The mod_mime_magic module allows the server to use various hints from the
267 # contents of the file itself to determine its type.  The MIMEMagicFile
268 # directive tells the module where the hint definitions are located.
269 #
270 #MIMEMagicFile /magic
271
272 #
273 # Customizable error responses come in three flavors:
274 # 1) plain text 2) local redirects 3) external redirects
275 #
276 # Some examples:
277 #ErrorDocument 500 "The server made a boo boo."
278 #ErrorDocument 404 /missing.html
279 #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
280 #ErrorDocument 402 http://www.example.com/subscription_info.html
281 #
282
283 #
284 # EnableMMAP and EnableSendfile: On systems that support it,
285 # memory-mapping or the sendfile syscall is used to deliver
286 # files.  This usually improves server performance, but must
287 # be turned off when serving from networked-mounted
288 # filesystems or if support for these functions is otherwise
289 # broken on your system.
290 #
291 #EnableMMAP off
292 #EnableSendfile off
293
294 # Supplemental configuration
295 #
296 # The configuration files in the /extra/ directory can be
297 # included to add extra features or to modify the default configuration of
298 # the server, or you may simply copy their contents here and change as
299 # necessary.
300
301 # Server-pool management (MPM specific)
302 #Include /extra/httpd-mpm.conf
303
304 # Multi-language error messages
305 #Include /extra/httpd-multilang-errordoc.conf
306
307 # Language settings
308 #Include /extra/httpd-languages.conf
309
310 # Virtual hosts
311 #Include /extra/httpd-vhosts.conf
312
313 # Local access to the Apache HTTP Server Manual
314 #Include /extra/httpd-manual.conf
315 #
316 # Note: The following must must be present to support
317 #       starting without SSL on platforms with no /dev/random equivalent
318 #       but a statically compiled-in mod_ssl.
319 #
320 <IfModule ssl_module>
321 SSLRandomSeed startup builtin
322 SSLRandomSeed connect builtin
323 </IfModule>
324
325 # vim:syn=apache
This page took 0.551237 seconds and 4 git commands to generate.