blob: fef5dd7a3e6c8c63db554d7beeebab2a72b23a39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# vhost to handle inexistent vhosts
<VirtualHost *:80>
ServerName error.<%= domain %>
ServerAlias *.<%= domain %>
DocumentRoot <%= apache_error_folder %>
ErrorDocument 404 <%= apache_error_dest %>
<Directory <%= apache_error_folder %>>
DirectoryIndex index.html
Options Indexes -Includes FollowSymLinks -MultiViews
AllowOverride None
</Directory>
</VirtualHost>
# end of vhost to handle inexistent vhosts
|