Subversion Repositories configs

Rev

Rev 4 | Rev 132 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 - 1
#
2
# This is the main Apache server configuration file.  It contains the
3
# configuration directives that give the server its instructions.
4
# See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
5
# In particular, see
6
# <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
7
# for a discussion of each configuration directive.
8
#
9
#
10
# Do NOT simply read the instructions in here without understanding
11
# what they do.  They're here only as hints or reminders.  If you are unsure
12
# consult the online docs. You have been warned.
13
#
14
# The configuration directives are grouped into three basic sections:
15
#  1. Directives that control the operation of the Apache server process as a
16
#     whole (the 'global environment').
17
#  2. Directives that define the parameters of the 'main' or 'default' server,
18
#     which responds to requests that aren't handled by a virtual host.
19
#     These directives also provide default values for the settings
20
#     of all virtual hosts.
21
#  3. Settings for virtual hosts, which allow Web requests to be sent to
22
#     different IP addresses or hostnames and have them handled by the
23
#     same Apache server process.
24
#
25
# Configuration and logfile names: If the filenames you specify for many
26
# of the server's control files begin with "/" (or "drive:/" for Win32), the
27
# server will use that explicit path.  If the filenames do *not* begin
28
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
29
# with ServerRoot set to "/etc/httpd" will be interpreted by the
30
# server as "/etc/httpd/logs/foo.log".
31
#
32
 
33
### Section 1: Global Environment
34
#
35
# The directives in this section affect the overall operation of Apache,
36
# such as the number of concurrent requests it can handle or where it
37
# can find its configuration files.
38
#
39
 
40
#
41
# Don't give away too much information about all the subcomponents
42
# we are running.  Comment out this line if you don't mind remote sites
43
# finding out what major optional modules you are running
44
ServerTokens OS
45
 
46
#
47
# ServerRoot: The top of the directory tree under which the server's
48
# configuration, error, and log files are kept.
49
#
50
# NOTE!  If you intend to place this on an NFS (or otherwise network)
51
# mounted filesystem then please read the LockFile documentation
52
# (available at <URL:http://httpd.apache.org/docs/2.2/mod/mpm_common.html#lockfile>);
53
# you will save yourself a lot of trouble.
54
#
55
# Do NOT add a slash at the end of the directory path.
56
#
57
ServerRoot "/etc/httpd"
58
 
59
#
60
# PidFile: The file in which the server should record its process
61
# identification number when it starts.  Note the PIDFILE variable in
62
# /etc/sysconfig/httpd must be set appropriately if this location is
63
# changed.
64
#
65
PidFile run/httpd.pid
66
 
67
#
68
# Timeout: The number of seconds before receives and sends time out.
69
#
70
Timeout 60
71
 
72
#
73
# KeepAlive: Whether or not to allow persistent connections (more than
74
# one request per connection). Set to "Off" to deactivate.
75
#
76
KeepAlive Off
77
 
78
#
79
# MaxKeepAliveRequests: The maximum number of requests to allow
80
# during a persistent connection. Set to 0 to allow an unlimited amount.
81
# We recommend you leave this number high, for maximum performance.
82
#
83
MaxKeepAliveRequests 100
84
 
85
#
86
# KeepAliveTimeout: Number of seconds to wait for the next request from the
87
# same client on the same connection.
88
#
89
KeepAliveTimeout 15
90
 
91
##
92
## Server-Pool Size Regulation (MPM specific)
93
##
94
 
95
# prefork MPM
96
# StartServers: number of server processes to start
97
# MinSpareServers: minimum number of server processes which are kept spare
98
# MaxSpareServers: maximum number of server processes which are kept spare
99
# ServerLimit: maximum value for MaxClients for the lifetime of the server
100
# MaxClients: maximum number of server processes allowed to start
101
# MaxRequestsPerChild: maximum number of requests a server process serves
102
<IfModule prefork.c>
103
StartServers       8
104
MinSpareServers    5
105
MaxSpareServers   20
106
ServerLimit      256
107
MaxClients       256
108
MaxRequestsPerChild  4000
109
</IfModule>
110
 
111
# worker MPM
112
# StartServers: initial number of server processes to start
113
# MaxClients: maximum number of simultaneous client connections
114
# MinSpareThreads: minimum number of worker threads which are kept spare
115
# MaxSpareThreads: maximum number of worker threads which are kept spare
116
# ThreadsPerChild: constant number of worker threads in each server process
117
# MaxRequestsPerChild: maximum number of requests a server process serves
118
<IfModule worker.c>
119
StartServers         4
120
MaxClients         300
121
MinSpareThreads     25
122
MaxSpareThreads     75
123
ThreadsPerChild     25
124
MaxRequestsPerChild  0
125
</IfModule>
126
 
127
#
128
# Listen: Allows you to bind Apache to specific IP addresses and/or
129
# ports, in addition to the default. See also the <VirtualHost>
130
# directive.
131
#
132
# Change this to Listen on specific IP addresses as shown below to
133
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
134
#
135
#Listen 12.34.56.78:80
136
Listen 80
137
 
138
#
139
# Dynamic Shared Object (DSO) Support
140
#
141
# To be able to use the functionality of a module which was built as a DSO you
142
# have to place corresponding `LoadModule' lines at this location so the
143
# directives contained in it are actually available _before_ they are used.
144
# Statically compiled modules (those listed by `httpd -l') do not need
145
# to be loaded here.
146
#
147
# Example:
148
# LoadModule foo_module modules/mod_foo.so
149
#
150
LoadModule auth_basic_module modules/mod_auth_basic.so
151
LoadModule auth_digest_module modules/mod_auth_digest.so
152
LoadModule authn_file_module modules/mod_authn_file.so
153
LoadModule authn_alias_module modules/mod_authn_alias.so
154
LoadModule authn_anon_module modules/mod_authn_anon.so
155
LoadModule authn_dbm_module modules/mod_authn_dbm.so
156
LoadModule authn_default_module modules/mod_authn_default.so
157
LoadModule authz_host_module modules/mod_authz_host.so
158
LoadModule authz_user_module modules/mod_authz_user.so
159
LoadModule authz_owner_module modules/mod_authz_owner.so
160
LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
161
LoadModule authz_dbm_module modules/mod_authz_dbm.so
162
LoadModule authz_default_module modules/mod_authz_default.so
163
LoadModule ldap_module modules/mod_ldap.so
164
LoadModule authnz_ldap_module modules/mod_authnz_ldap.so
165
LoadModule include_module modules/mod_include.so
166
LoadModule log_config_module modules/mod_log_config.so
167
LoadModule logio_module modules/mod_logio.so
168
LoadModule env_module modules/mod_env.so
169
LoadModule ext_filter_module modules/mod_ext_filter.so
170
LoadModule mime_magic_module modules/mod_mime_magic.so
171
LoadModule expires_module modules/mod_expires.so
172
LoadModule deflate_module modules/mod_deflate.so
173
LoadModule headers_module modules/mod_headers.so
174
LoadModule usertrack_module modules/mod_usertrack.so
175
LoadModule setenvif_module modules/mod_setenvif.so
176
LoadModule mime_module modules/mod_mime.so
177
LoadModule dav_module modules/mod_dav.so
178
LoadModule status_module modules/mod_status.so
179
LoadModule autoindex_module modules/mod_autoindex.so
180
LoadModule info_module modules/mod_info.so
181
LoadModule dav_fs_module modules/mod_dav_fs.so
182
LoadModule vhost_alias_module modules/mod_vhost_alias.so
183
LoadModule negotiation_module modules/mod_negotiation.so
184
LoadModule dir_module modules/mod_dir.so
185
LoadModule actions_module modules/mod_actions.so
186
LoadModule speling_module modules/mod_speling.so
187
LoadModule userdir_module modules/mod_userdir.so
188
LoadModule alias_module modules/mod_alias.so
189
LoadModule substitute_module modules/mod_substitute.so
190
LoadModule rewrite_module modules/mod_rewrite.so
191
LoadModule proxy_module modules/mod_proxy.so
192
LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
193
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
194
LoadModule proxy_http_module modules/mod_proxy_http.so
195
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
196
LoadModule proxy_connect_module modules/mod_proxy_connect.so
197
LoadModule cache_module modules/mod_cache.so
198
LoadModule suexec_module modules/mod_suexec.so
199
LoadModule disk_cache_module modules/mod_disk_cache.so
200
LoadModule cgi_module modules/mod_cgi.so
201
LoadModule version_module modules/mod_version.so
202
 
203
#
204
# The following modules are not loaded by default:
205
#
206
#LoadModule asis_module modules/mod_asis.so
207
#LoadModule authn_dbd_module modules/mod_authn_dbd.so
208
#LoadModule cern_meta_module modules/mod_cern_meta.so
209
#LoadModule cgid_module modules/mod_cgid.so
210
#LoadModule dbd_module modules/mod_dbd.so
211
#LoadModule dumpio_module modules/mod_dumpio.so
212
#LoadModule filter_module modules/mod_filter.so
213
#LoadModule ident_module modules/mod_ident.so
214
#LoadModule log_forensic_module modules/mod_log_forensic.so
215
#LoadModule unique_id_module modules/mod_unique_id.so
216
#
217
 
218
#
219
# Load config files from the config directory "/etc/httpd/conf.d".
220
#
221
Include conf.d/*.conf
222
 
223
#
224
# ExtendedStatus controls whether Apache will generate "full" status
225
# information (ExtendedStatus On) or just basic information (ExtendedStatus
226
# Off) when the "server-status" handler is called. The default is Off.
227
#
228
#ExtendedStatus On
229
 
230
#
231
# If you wish httpd to run as a different user or group, you must run
232
# httpd as root initially and it will switch.
233
#
234
# User/Group: The name (or #number) of the user/group to run httpd as.
235
#  . On SCO (ODT 3) use "User nouser" and "Group nogroup".
236
#  . On HPUX you may not be able to use shared memory as nobody, and the
237
#    suggested workaround is to create a user www and use that user.
238
#  NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
239
#  when the value of (unsigned)Group is above 60000;
240
#  don't use Group #-1 on these systems!
241
#
242
User apache
243
Group apache
244
 
245
### Section 2: 'Main' server configuration
246
#
247
# The directives in this section set up the values used by the 'main'
248
# server, which responds to any requests that aren't handled by a
249
# <VirtualHost> definition.  These values also provide defaults for
250
# any <VirtualHost> containers you may define later in the file.
251
#
252
# All of these directives may appear inside <VirtualHost> containers,
253
# in which case these default settings will be overridden for the
254
# virtual host being defined.
255
#
256
 
257
#
258
# ServerAdmin: Your address, where problems with the server should be
259
# e-mailed.  This address appears on some server-generated pages, such
260
# as error documents.  e.g. admin@your-domain.com
261
#
262
ServerAdmin root@localhost
263
 
264
#
265
# ServerName gives the name and port that the server uses to identify itself.
266
# This can often be determined automatically, but we recommend you specify
267
# it explicitly to prevent problems during startup.
268
#
269
# If this is not set to valid DNS name for your host, server-generated
270
# redirections will not work.  See also the UseCanonicalName directive.
271
#
272
# If your host doesn't have a registered DNS name, enter its IP address here.
273
# You will have to access it by its address anyway, and this will make
274
# redirections work in a sensible way.
275
#
276
#ServerName www.example.com:80
277
ServerName www.ujsoftware.com:80
278
 
279
#
280
# UseCanonicalName: Determines how Apache constructs self-referencing
281
# URLs and the SERVER_NAME and SERVER_PORT variables.
282
# When set "Off", Apache will use the Hostname and Port supplied
283
# by the client.  When set "On", Apache will use the value of the
284
# ServerName directive.
285
#
286
UseCanonicalName Off
287
 
288
#
289
# DocumentRoot: The directory out of which you will serve your
290
# documents. By default, all requests are taken from this directory, but
291
# symbolic links and aliases may be used to point to other locations.
292
#
293
DocumentRoot "/var/www/html"
294
 
295
#
296
# Each directory to which Apache has access can be configured with respect
297
# to which services and features are allowed and/or disabled in that
298
# directory (and its subdirectories).
299
#
300
# First, we configure the "default" to be a very restrictive set of
301
# features.
302
#
303
<Directory />
304
    Options FollowSymLinks
305
    AllowOverride None
306
</Directory>
307
 
308
#
309
# Note that from this point forward you must specifically allow
310
# particular features to be enabled - so if something's not working as
311
# you might expect, make sure that you have specifically enabled it
312
# below.
313
#
314
 
315
#
316
# This should be changed to whatever you set DocumentRoot to.
317
#
318
<Directory "/var/www/html">
319
 
320
#
321
# Possible values for the Options directive are "None", "All",
322
# or any combination of:
323
#   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
324
#
325
# Note that "MultiViews" must be named *explicitly* --- "Options All"
326
# doesn't give it to you.
327
#
328
# The Options directive is both complicated and important.  Please see
329
# http://httpd.apache.org/docs/2.2/mod/core.html#options
330
# for more information.
331
#
332
    Options Indexes FollowSymLinks
333
 
334
#
335
# AllowOverride controls what directives may be placed in .htaccess files.
336
# It can be "All", "None", or any combination of the keywords:
337
#   Options FileInfo AuthConfig Limit
338
#
339
    AllowOverride None
340
 
341
#
342
# Controls who can get stuff from this server.
343
#
344
    Order allow,deny
345
    Allow from all
346
 
347
</Directory>
348
 
349
#
350
# UserDir: The name of the directory that is appended onto a user's home
351
# directory if a ~user request is received.
352
#
353
# The path to the end user account 'public_html' directory must be
354
# accessible to the webserver userid.  This usually means that ~userid
355
# must have permissions of 711, ~userid/public_html must have permissions
356
# of 755, and documents contained therein must be world-readable.
357
# Otherwise, the client will only receive a "403 Forbidden" message.
358
#
359
# See also: http://httpd.apache.org/docs/misc/FAQ.html#forbidden
360
#
361
<IfModule mod_userdir.c>
362
    #
363
    # UserDir is disabled by default since it can confirm the presence
364
    # of a username on the system (depending on home directory
365
    # permissions).
366
    #
367
    UserDir disabled
368
 
369
    #
370
    # To enable requests to /~user/ to serve the user's public_html
371
    # directory, remove the "UserDir disabled" line above, and uncomment
372
    # the following line instead:
373
    #
374
    #UserDir public_html
375
 
376
</IfModule>
377
 
378
#
379
# Control access to UserDir directories.  The following is an example
380
# for a site where these directories are restricted to read-only.
381
#
382
#<Directory /home/*/public_html>
383
#    AllowOverride FileInfo AuthConfig Limit
384
#    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
385
#    <Limit GET POST OPTIONS>
386
#        Order allow,deny
387
#        Allow from all
388
#    </Limit>
389
#    <LimitExcept GET POST OPTIONS>
390
#        Order deny,allow
391
#        Deny from all
392
#    </LimitExcept>
393
#</Directory>
394
 
395
#
396
# DirectoryIndex: sets the file that Apache will serve if a directory
397
# is requested.
398
#
399
# The index.html.var file (a type-map) is used to deliver content-
400
# negotiated documents.  The MultiViews Option can be used for the
401
# same purpose, but it is much slower.
402
#
403
DirectoryIndex index.html index.html.var
404
 
405
#
406
# AccessFileName: The name of the file to look for in each directory
407
# for additional configuration directives.  See also the AllowOverride
408
# directive.
409
#
410
AccessFileName .htaccess
411
 
412
#
413
# The following lines prevent .htaccess and .htpasswd files from being
414
# viewed by Web clients.
415
#
416
<Files ~ "^\.ht">
417
    Order allow,deny
418
    Deny from all
419
    Satisfy All
420
</Files>
421
 
422
#
423
# TypesConfig describes where the mime.types file (or equivalent) is
424
# to be found.
425
#
426
TypesConfig /etc/mime.types
427
 
428
#
429
# DefaultType is the default MIME type the server will use for a document
430
# if it cannot otherwise determine one, such as from filename extensions.
431
# If your server contains mostly text or HTML documents, "text/plain" is
432
# a good value.  If most of your content is binary, such as applications
433
# or images, you may want to use "application/octet-stream" instead to
434
# keep browsers from trying to display binary files as though they are
435
# text.
436
#
437
DefaultType text/plain
438
 
439
#
440
# The mod_mime_magic module allows the server to use various hints from the
441
# contents of the file itself to determine its type.  The MIMEMagicFile
442
# directive tells the module where the hint definitions are located.
443
#
444
<IfModule mod_mime_magic.c>
445
#   MIMEMagicFile /usr/share/magic.mime
446
    MIMEMagicFile conf/magic
447
</IfModule>
448
 
449
#
450
# HostnameLookups: Log the names of clients or just their IP addresses
451
# e.g., www.apache.org (on) or 204.62.129.132 (off).
452
# The default is off because it'd be overall better for the net if people
453
# had to knowingly turn this feature on, since enabling it means that
454
# each client request will result in AT LEAST one lookup request to the
455
# nameserver.
456
#
457
HostnameLookups Off
458
 
459
#
460
# EnableMMAP: Control whether memory-mapping is used to deliver
461
# files (assuming that the underlying OS supports it).
462
# The default is on; turn this off if you serve from NFS-mounted
463
# filesystems.  On some systems, turning it off (regardless of
464
# filesystem) can improve performance; for details, please see
465
# http://httpd.apache.org/docs/2.2/mod/core.html#enablemmap
466
#
467
#EnableMMAP off
468
 
469
#
470
# EnableSendfile: Control whether the sendfile kernel support is
471
# used to deliver files (assuming that the OS supports it).
472
# The default is on; turn this off if you serve from NFS-mounted
473
# filesystems.  Please see
474
# http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile
475
#
476
#EnableSendfile off
477
 
478
#
479
# ErrorLog: The location of the error log file.
480
# If you do not specify an ErrorLog directive within a <VirtualHost>
481
# container, error messages relating to that virtual host will be
482
# logged here.  If you *do* define an error logfile for a <VirtualHost>
483
# container, that host's errors will be logged there and not here.
484
#
485
ErrorLog logs/error_log
486
 
487
#
488
# LogLevel: Control the number of messages logged to the error_log.
489
# Possible values include: debug, info, notice, warn, error, crit,
490
# alert, emerg.
491
#
492
LogLevel warn
493
 
494
#
495
# The following directives define some format nicknames for use with
496
# a CustomLog directive (see below).
497
#
498
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
499
LogFormat "%h %l %u %t \"%r\" %>s %b" common
500
LogFormat "%{Referer}i -> %U" referer
501
LogFormat "%{User-agent}i" agent
502
 
503
# "combinedio" includes actual counts of actual bytes received (%I) and sent (%O); this
504
# requires the mod_logio module to be loaded.
505
#LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
506
 
507
#
508
# The location and format of the access logfile (Common Logfile Format).
509
# If you do not define any access logfiles within a <VirtualHost>
510
# container, they will be logged here.  Contrariwise, if you *do*
511
# define per-<VirtualHost> access logfiles, transactions will be
512
# logged therein and *not* in this file.
513
#
514
#CustomLog logs/access_log common
515
 
516
#
517
# If you would like to have separate agent and referer logfiles, uncomment
518
# the following directives.
519
#
520
#CustomLog logs/referer_log referer
521
#CustomLog logs/agent_log agent
522
 
523
#
524
# For a single logfile with access, agent, and referer information
525
# (Combined Logfile Format), use the following directive:
526
#
527
CustomLog logs/access_log combined
528
 
529
#
530
# Optionally add a line containing the server version and virtual host
531
# name to server-generated pages (internal error documents, FTP directory
532
# listings, mod_status and mod_info output etc., but not CGI generated
533
# documents or custom error documents).
534
# Set to "EMail" to also include a mailto: link to the ServerAdmin.
535
# Set to one of:  On | Off | EMail
536
#
537
ServerSignature On
538
 
539
#
540
# Aliases: Add here as many aliases as you need (with no limit). The format is
541
# Alias fakename realname
542
#
543
# Note that if you include a trailing / on fakename then the server will
544
# require it to be present in the URL.  So "/icons" isn't aliased in this
545
# example, only "/icons/".  If the fakename is slash-terminated, then the
546
# realname must also be slash terminated, and if the fakename omits the
547
# trailing slash, the realname must also omit it.
548
#
549
# We include the /icons/ alias for FancyIndexed directory listings.  If you
550
# do not use FancyIndexing, you may comment this out.
551
#
552
Alias /icons/ "/var/www/icons/"
553
 
554
<Directory "/var/www/icons">
555
    Options Indexes MultiViews FollowSymLinks
556
    AllowOverride None
557
    Order allow,deny
558
    Allow from all
559
</Directory>
560
 
561
#
562
# WebDAV module configuration section.
563
#
564
<IfModule mod_dav_fs.c>
565
    # Location of the WebDAV lock database.
566
    DAVLockDB /var/lib/dav/lockdb
567
</IfModule>
568
 
569
#
570
# ScriptAlias: This controls which directories contain server scripts.
571
# ScriptAliases are essentially the same as Aliases, except that
572
# documents in the realname directory are treated as applications and
573
# run by the server when requested rather than as documents sent to the client.
574
# The same rules about trailing "/" apply to ScriptAlias directives as to
575
# Alias.
576
#
577
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
578
 
579
#
580
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
581
# CGI directory exists, if you have that configured.
582
#
583
<Directory "/var/www/cgi-bin">
584
    AllowOverride None
585
    Options None
586
    Order allow,deny
587
    Allow from all
588
</Directory>
589
 
590
#
591
# Redirect allows you to tell clients about documents which used to exist in
592
# your server's namespace, but do not anymore. This allows you to tell the
593
# clients where to look for the relocated document.
594
# Example:
595
# Redirect permanent /foo http://www.example.com/bar
596
 
597
#
598
# Directives controlling the display of server-generated directory listings.
599
#
600
 
601
#
602
# IndexOptions: Controls the appearance of server-generated directory
603
# listings.
604
#
605
IndexOptions FancyIndexing VersionSort NameWidth=* HTMLTable Charset=UTF-8
606
 
607
#
608
# AddIcon* directives tell the server which icon to show for different
609
# files or filename extensions.  These are only displayed for
610
# FancyIndexed directories.
611
#
612
AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
613
 
614
AddIconByType (TXT,/icons/text.gif) text/*
615
AddIconByType (IMG,/icons/image2.gif) image/*
616
AddIconByType (SND,/icons/sound2.gif) audio/*
617
AddIconByType (VID,/icons/movie.gif) video/*
618
 
619
AddIcon /icons/binary.gif .bin .exe
620
AddIcon /icons/binhex.gif .hqx
621
AddIcon /icons/tar.gif .tar
622
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
623
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
624
AddIcon /icons/a.gif .ps .ai .eps
625
AddIcon /icons/layout.gif .html .shtml .htm .pdf
626
AddIcon /icons/text.gif .txt
627
AddIcon /icons/c.gif .c
628
AddIcon /icons/p.gif .pl .py
629
AddIcon /icons/f.gif .for
630
AddIcon /icons/dvi.gif .dvi
631
AddIcon /icons/uuencoded.gif .uu
632
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
633
AddIcon /icons/tex.gif .tex
34 - 634
AddIcon /icons/bomb.gif /core
4 - 635
 
636
AddIcon /icons/back.gif ..
637
AddIcon /icons/hand.right.gif README
638
AddIcon /icons/folder.gif ^^DIRECTORY^^
639
AddIcon /icons/blank.gif ^^BLANKICON^^
640
 
641
#
642
# DefaultIcon is which icon to show for files which do not have an icon
643
# explicitly set.
644
#
645
DefaultIcon /icons/unknown.gif
646
 
647
#
648
# AddDescription allows you to place a short description after a file in
649
# server-generated indexes.  These are only displayed for FancyIndexed
650
# directories.
651
# Format: AddDescription "description" filename
652
#
653
#AddDescription "GZIP compressed document" .gz
654
#AddDescription "tar archive" .tar
655
#AddDescription "GZIP compressed tar archive" .tgz
656
 
657
#
658
# ReadmeName is the name of the README file the server will look for by
659
# default, and append to directory listings.
660
#
661
# HeaderName is the name of a file which should be prepended to
662
# directory indexes.
663
ReadmeName README.html
664
HeaderName HEADER.html
665
 
666
#
667
# IndexIgnore is a set of filenames which directory indexing should ignore
668
# and not include in the listing.  Shell-style wildcarding is permitted.
669
#
670
IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
671
 
672
#
673
# DefaultLanguage and AddLanguage allows you to specify the language of
674
# a document. You can then use content negotiation to give a browser a
675
# file in a language the user can understand.
676
#
677
# Specify a default language. This means that all data
678
# going out without a specific language tag (see below) will
679
# be marked with this one. You probably do NOT want to set
680
# this unless you are sure it is correct for all cases.
681
#
682
# * It is generally better to not mark a page as
683
# * being a certain language than marking it with the wrong
684
# * language!
685
#
686
# DefaultLanguage nl
687
#
688
# Note 1: The suffix does not have to be the same as the language
689
# keyword --- those with documents in Polish (whose net-standard
690
# language code is pl) may wish to use "AddLanguage pl .po" to
691
# avoid the ambiguity with the common suffix for perl scripts.
692
#
693
# Note 2: The example entries below illustrate that in some cases
694
# the two character 'Language' abbreviation is not identical to
695
# the two character 'Country' code for its country,
696
# E.g. 'Danmark/dk' versus 'Danish/da'.
697
#
698
# Note 3: In the case of 'ltz' we violate the RFC by using a three char
699
# specifier. There is 'work in progress' to fix this and get
700
# the reference data for rfc1766 cleaned up.
701
#
702
# Catalan (ca) - Croatian (hr) - Czech (cs) - Danish (da) - Dutch (nl)
703
# English (en) - Esperanto (eo) - Estonian (et) - French (fr) - German (de)
704
# Greek-Modern (el) - Hebrew (he) - Italian (it) - Japanese (ja)
705
# Korean (ko) - Luxembourgeois* (ltz) - Norwegian Nynorsk (nn)
706
# Norwegian (no) - Polish (pl) - Portugese (pt)
707
# Brazilian Portuguese (pt-BR) - Russian (ru) - Swedish (sv)
708
# Simplified Chinese (zh-CN) - Spanish (es) - Traditional Chinese (zh-TW)
709
#
710
AddLanguage ca .ca
711
AddLanguage cs .cz .cs
712
AddLanguage da .dk
713
AddLanguage de .de
714
AddLanguage el .el
715
AddLanguage en .en
716
AddLanguage eo .eo
717
AddLanguage es .es
718
AddLanguage et .et
719
AddLanguage fr .fr
720
AddLanguage he .he
721
AddLanguage hr .hr
722
AddLanguage it .it
723
AddLanguage ja .ja
724
AddLanguage ko .ko
725
AddLanguage ltz .ltz
726
AddLanguage nl .nl
727
AddLanguage nn .nn
728
AddLanguage no .no
729
AddLanguage pl .po
730
AddLanguage pt .pt
731
AddLanguage pt-BR .pt-br
732
AddLanguage ru .ru
733
AddLanguage sv .sv
734
AddLanguage zh-CN .zh-cn
735
AddLanguage zh-TW .zh-tw
736
 
737
#
738
# LanguagePriority allows you to give precedence to some languages
739
# in case of a tie during content negotiation.
740
#
741
# Just list the languages in decreasing order of preference. We have
742
# more or less alphabetized them here. You probably want to change this.
743
#
744
LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
745
 
746
#
747
# ForceLanguagePriority allows you to serve a result page rather than
748
# MULTIPLE CHOICES (Prefer) [in case of a tie] or NOT ACCEPTABLE (Fallback)
749
# [in case no accepted languages matched the available variants]
750
#
751
ForceLanguagePriority Prefer Fallback
752
 
753
#
754
# Specify a default charset for all content served; this enables
755
# interpretation of all content as UTF-8 by default.  To use the
756
# default browser choice (ISO-8859-1), or to allow the META tags
757
# in HTML content to override this choice, comment out this
758
# directive:
759
#
760
AddDefaultCharset UTF-8
761
 
762
#
763
# AddType allows you to add to or override the MIME configuration
764
# file mime.types for specific file types.
765
#
766
#AddType application/x-tar .tgz
767
 
768
#
769
# AddEncoding allows you to have certain browsers uncompress
770
# information on the fly. Note: Not all browsers support this.
771
# Despite the name similarity, the following Add* directives have nothing
772
# to do with the FancyIndexing customization directives above.
773
#
774
#AddEncoding x-compress .Z
775
#AddEncoding x-gzip .gz .tgz
776
 
777
# If the AddEncoding directives above are commented-out, then you
778
# probably should define those extensions to indicate media types:
779
#
780
AddType application/x-compress .Z
781
AddType application/x-gzip .gz .tgz
782
 
783
#
784
#   MIME-types for downloading Certificates and CRLs
785
#
786
AddType application/x-x509-ca-cert .crt
787
AddType application/x-pkcs7-crl    .crl
788
 
789
#
790
# AddHandler allows you to map certain file extensions to "handlers":
791
# actions unrelated to filetype. These can be either built into the server
792
# or added with the Action directive (see below)
793
#
794
# To use CGI scripts outside of ScriptAliased directories:
795
# (You will also need to add "ExecCGI" to the "Options" directive.)
796
#
797
#AddHandler cgi-script .cgi
798
 
799
#
800
# For files that include their own HTTP headers:
801
#
802
#AddHandler send-as-is asis
803
 
804
#
805
# For type maps (negotiated resources):
806
# (This is enabled by default to allow the Apache "It Worked" page
807
#  to be distributed in multiple languages.)
808
#
809
AddHandler type-map var
810
 
811
#
812
# Filters allow you to process content before it is sent to the client.
813
#
814
# To parse .shtml files for server-side includes (SSI):
815
# (You will also need to add "Includes" to the "Options" directive.)
816
#
817
AddType text/html .shtml
818
AddOutputFilter INCLUDES .shtml
819
 
820
#
821
# Action lets you define media types that will execute a script whenever
822
# a matching file is called. This eliminates the need for repeated URL
823
# pathnames for oft-used CGI file processors.
824
# Format: Action media/type /cgi-script/location
825
# Format: Action handler-name /cgi-script/location
826
#
827
 
828
#
829
# Customizable error responses come in three flavors:
830
# 1) plain text 2) local redirects 3) external redirects
831
#
832
# Some examples:
833
#ErrorDocument 500 "The server made a boo boo."
834
#ErrorDocument 404 /missing.html
835
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
836
#ErrorDocument 402 http://www.example.com/subscription_info.html
837
#
838
 
839
#
840
# Putting this all together, we can internationalize error responses.
841
#
842
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
843
# our collection of by-error message multi-language collections.  We use
844
# includes to substitute the appropriate text.
845
#
846
# You can modify the messages' appearance without changing any of the
847
# default HTTP_<error>.html.var files by adding the line:
848
#
849
#   Alias /error/include/ "/your/include/path/"
850
#
851
# which allows you to create your own set of files by starting with the
852
# /var/www/error/include/ files and
853
# copying them to /your/include/path/, even on a per-VirtualHost basis.
854
#
855
 
856
Alias /error/ "/var/www/error/"
857
 
858
<IfModule mod_negotiation.c>
859
<IfModule mod_include.c>
860
    <Directory "/var/www/error">
861
        AllowOverride None
862
        Options IncludesNoExec
863
        AddOutputFilter Includes html
864
        AddHandler type-map var
865
        Order allow,deny
866
        Allow from all
867
        LanguagePriority en es de fr
868
        ForceLanguagePriority Prefer Fallback
869
    </Directory>
870
 
871
#    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
872
#    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
873
#    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
874
#    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
875
#    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
876
#    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
877
#    ErrorDocument 410 /error/HTTP_GONE.html.var
878
#    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
879
#    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
880
#    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
881
#    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
882
#    ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var
883
#    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
884
#    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
885
#    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
886
#    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
887
#    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
888
 
889
</IfModule>
890
</IfModule>
891
 
892
#
893
# The following directives modify normal HTTP response behavior to
894
# handle known problems with browser implementations.
895
#
896
BrowserMatch "Mozilla/2" nokeepalive
897
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
898
BrowserMatch "RealPlayer 4\.0" force-response-1.0
899
BrowserMatch "Java/1\.0" force-response-1.0
900
BrowserMatch "JDK/1\.0" force-response-1.0
901
 
902
#
903
# The following directive disables redirects on non-GET requests for
904
# a directory that does not include the trailing slash.  This fixes a
905
# problem with Microsoft WebFolders which does not appropriately handle
906
# redirects for folders with DAV methods.
907
# Same deal with Apple's DAV filesystem and Gnome VFS support for DAV.
908
#
909
BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
910
BrowserMatch "MS FrontPage" redirect-carefully
911
BrowserMatch "^WebDrive" redirect-carefully
912
BrowserMatch "^WebDAVFS/1.[0123]" redirect-carefully
913
BrowserMatch "^gnome-vfs/1.0" redirect-carefully
914
BrowserMatch "^XML Spy" redirect-carefully
915
BrowserMatch "^Dreamweaver-WebDAV-SCM1" redirect-carefully
916
 
917
#
918
# Allow server status reports generated by mod_status,
919
# with the URL of http://servername/server-status
920
# Change the ".example.com" to match your domain to enable.
921
#
922
#<Location /server-status>
923
#    SetHandler server-status
924
#    Order deny,allow
925
#    Deny from all
926
#    Allow from .example.com
927
#</Location>
928
 
929
#
930
# Allow remote server configuration reports, with the URL of
931
#  http://servername/server-info (requires that mod_info.c be loaded).
932
# Change the ".example.com" to match your domain to enable.
933
#
934
#<Location /server-info>
935
#    SetHandler server-info
936
#    Order deny,allow
937
#    Deny from all
938
#    Allow from .example.com
939
#</Location>
940
 
941
#
942
# Proxy Server directives. Uncomment the following lines to
943
# enable the proxy server:
944
#
945
#<IfModule mod_proxy.c>
946
#ProxyRequests On
947
#
948
#<Proxy *>
949
#    Order deny,allow
950
#    Deny from all
951
#    Allow from .example.com
952
#</Proxy>
953
 
954
#
955
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
956
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
957
# Set to one of: Off | On | Full | Block
958
#
959
#ProxyVia On
960
 
961
#
962
# To enable a cache of proxied content, uncomment the following lines.
963
# See http://httpd.apache.org/docs/2.2/mod/mod_cache.html for more details.
964
#
965
#<IfModule mod_disk_cache.c>
966
#   CacheEnable disk /
967
#   CacheRoot "/var/cache/mod_proxy"
968
#</IfModule>
969
#
970
 
971
#</IfModule>
972
# End of proxy directives.
973
 
974
### Section 3: Virtual Hosts
975
#
976
# VirtualHost: If you want to maintain multiple domains/hostnames on your
977
# machine you can setup VirtualHost containers for them. Most configurations
978
# use only name-based virtual hosts so the server doesn't need to worry about
979
# IP addresses. This is indicated by the asterisks in the directives below.
980
#
981
# Please see the documentation at
982
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
983
# for further details before you try to setup virtual hosts.
984
#
985
# You may use the command line option '-S' to verify your virtual host
986
# configuration.
987
 
988
#
989
# Use name-based virtual hosting.
990
#
991
#NameVirtualHost *:80
992
#
993
# NOTE: NameVirtualHost cannot be used without a port specifier
994
# (e.g. :80) if mod_ssl is being used, due to the nature of the
995
# SSL protocol.
996
#
997
 
998
#
999
# VirtualHost example:
1000
# Almost any Apache directive may go into a VirtualHost container.
1001
# The first VirtualHost section is used for requests without a known
1002
# server name.
1003
#
1004
#<VirtualHost *:80>
1005
#    ServerAdmin webmaster@dummy-host.example.com
1006
#    DocumentRoot /www/docs/dummy-host.example.com
1007
#    ServerName dummy-host.example.com
1008
#    ErrorLog logs/dummy-host.example.com-error_log
1009
#    CustomLog logs/dummy-host.example.com-access_log common
1010
#</VirtualHost>
1011
 
1012
 
1013
<Files upsset.cgi>
1014
deny from all
1015
allow from 10.192.25.201
1016
</Files>
1017
 
1018
Alias "/amavis-stats" "/usr/local/share/amavis-stats/"
1019
 
1020
<Directory /usr/local/share/amavis-stats/>
1021
    Options +FollowSymLinks
1022
    AllowOverride None
1023
    order allow,deny
1024
    allow from all
1025
    <IfModule mod_expires.c>
1026
        ExpiresByType image/png M60
1027
    </IfModule>
1028
</Directory>
1029
 
1030
Alias "/virusmails" "/var/virusmails/"
1031
 
1032
<Directory /var/virusmails/>
1033
    Options +FollowSymLinks
1034
    AllowOverride None
1035
    order allow,deny
1036
    allow from all
1037
    <IfModule mod_expires.c>
1038
        ExpiresByType image/png M60
1039
    </IfModule>
1040
</Directory>
1041
 
1042
<IfModule mod_env.c>
1043
   # Adjust TZ for your server timezone, e.g. EST5EDT - put the non-daylight-savings
1044
   # timezone code first (e.g. EST or GMT), followed by the number of hours that it's behind GMT
1045
   # during non-daylight-savings time (use '-5' for timezones in advance of GMT).
1046
   SetEnv TZ EST5EDT
1047
</IfModule>
1048
 
1049
Alias /Microsoft-Server-ActiveSync /usr/share/z-push/index.php
1050
 
1051
# Include /etc/httpd/conf.d/apcupsd.conf