]> git.pld-linux.org Git - packages/apache1.git/blob - apache1-errordocs.conf
- conditionals for module directives
[packages/apache1.git] / apache1-errordocs.conf
1 # $Id$
2
3 <IfModule mod_alias.c>
4 Alias /errordocs/ "/home/services/apache/errordocs/"
5 <Directory /home/services/apache/errordocs/>
6     AllowOverride None
7     Options IncludesNoExec FollowSymLinks
8     Allow from all
9 </Directory>
10
11 ErrorDocument 400       /errordocs/400.shtml
12 ErrorDocument 401       /errordocs/401.shtml
13 ErrorDocument 403       /errordocs/403.shtml
14 ErrorDocument 404       /errordocs/404.shtml
15 ErrorDocument 405       /errordocs/405.shtml
16 ErrorDocument 406       /errordocs/406.shtml
17 ErrorDocument 408       /errordocs/408.shtml
18 ErrorDocument 410       /errordocs/410.shtml
19 ErrorDocument 411       /errordocs/411.shtml
20 ErrorDocument 414       /errordocs/414.shtml
21 ErrorDocument 500       /errordocs/500.shtml
22 ErrorDocument 503       /errordocs/503.shtml
23 </IfModule>
24
25 # vim: filetype=apache ts=4 sw=4 et
This page took 0.033497 seconds and 4 git commands to generate.