blob: 314e195be6d1e7a44518bcadbabcbf47eca68b2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<IfModule mod_alias.c>
Alias /errorpage/400 /etc/apache2/customization/errorpage/400.shtml
Alias /errorpage/401 /etc/apache2/customization/errorpage/401.shtml
Alias /errorpage/403 /etc/apache2/customization/errorpage/403.shtml
Alias /errorpage/404 /etc/apache2/customization/errorpage/404.shtml
Alias /errorpage/405 /etc/apache2/customization/errorpage/405.shtml
Alias /errorpage/408 /etc/apache2/customization/errorpage/408.shtml
Alias /errorpage/409 /etc/apache2/customization/errorpage/409.shtml
Alias /errorpage/410 /etc/apache2/customization/errorpage/410.shtml
Alias /errorpage/411 /etc/apache2/customization/errorpage/411.shtml
Alias /errorpage/412 /etc/apache2/customization/errorpage/412.shtml
Alias /errorpage/413 /etc/apache2/customization/errorpage/413.shtml
Alias /errorpage/414 /etc/apache2/customization/errorpage/414.shtml
Alias /errorpage/415 /etc/apache2/customization/errorpage/415.shtml
Alias /errorpage/429 /etc/apache2/customization/errorpage/429.shtml
Alias /errorpage/500 /etc/apache2/customization/errorpage/500.shtml
Alias /errorpage/501 /etc/apache2/customization/errorpage/501.shtml
Alias /errorpage/502 /etc/apache2/customization/errorpage/502.shtml
Alias /errorpage/503 /etc/apache2/customization/errorpage/503.shtml
Alias /errorpage/504 /etc/apache2/customization/errorpage/504.shtml
ErrorDocument 400 /errorpage/400
ErrorDocument 401 /errorpage/401
ErrorDocument 403 /errorpage/403
ErrorDocument 404 /errorpage/404
ErrorDocument 405 /errorpage/405
ErrorDocument 408 /errorpage/408
ErrorDocument 409 /errorpage/409
ErrorDocument 410 /errorpage/410
ErrorDocument 411 /errorpage/411
ErrorDocument 412 /errorpage/412
ErrorDocument 413 /errorpage/413
ErrorDocument 414 /errorpage/414
ErrorDocument 415 /errorpage/415
ErrorDocument 429 /errorpage/429
ErrorDocument 500 /errorpage/500
ErrorDocument 501 /errorpage/501
ErrorDocument 502 /errorpage/502
ErrorDocument 503 /errorpage/503
ErrorDocument 504 /errorpage/504
<Directory /etc/apache2/customization/errorpage/>
Options +Includes
Require all granted
</Directory>
</IfModule>
|