Red Hat ENTERPRISE LINUX 5 - DEPLOYMENT Deployment Manual page 339

Hide thumbs Also See for ENTERPRISE LINUX 5 - DEPLOYMENT:
Table of Contents

Advertisement

<VirtualHost _default_:443> # General setup for the virtual host ServerName ssl.host.name:443
... </VirtualHost>
It is also important to note that both the SSLLog and SSLLogLevel directives have been removed.
The mod_ssl module now obeys the ErrorLog and LogLevel directives. Refer to
LogLevel
for more information about these directives.
For more on this topic, refer to the following documentation on the Apache Software Foundation's
website:
http://httpd.apache.org/docs-2.0/mod/mod_ssl.html
http://httpd.apache.org/docs-2.0/vhosts/
22.2.2.4.3. The mod_proxy Module
Proxy access control statements are now placed inside a <Proxy> block rather than a <Directory
proxy:>.
The caching functionality of the old mod_proxy has been split out into the following three modules:
• mod_cache
• mod_disk_cache
• mod_mem_cache
These generally use directives similar to the older versions of the mod_proxy module, but it is
advisable to verify each directive before migrating any cache settings.
For more on this topic, refer to the following documentation on the Apache Software Foundation's
website:
http://httpd.apache.org/docs-2.0/mod/mod_proxy.html
22.2.2.4.4. The mod_include Module
The mod_include module is now implemented as a filter and is therefore enabled differently. Refer
Section 22.2.2.4, "Modules and Apache HTTP Server 2.0"
to
For example, the following is a sample Apache HTTP Server 1.3 directive:
AddType text/html .shtml AddHandler server-parsed .shtml
To migrate this setting to Apache HTTP Server 2.0, use the following structure:
AddType text/html .shtml AddOutputFilter INCLUDES .shtml
Note that the Options +Includes directive is still required for the <Directory> container or in a
.htaccess file.
For more on this topic, refer to the following documentation on the Apache Software Foundation's
website:
Migrating Apache HTTP Server 1.3 Configuration Files to 2.0
for more about filters.
ErrorLog
and
313

Advertisement

Table of Contents
loading

Table of Contents