Apache manual.conf configuration example for CentOS Linux 6

Get the default configuration file manual.conf for Apache, optimized for CentOS Linux 6. This example configuration ensures optimal compatibility and performance for Apache, making it easy to set up and adjust to meet your needs.

Find and download the configuration file here: /etc/httpd/conf.d/manual.conf.

For more configurations and setup guides, visit our related files section to further customize your system.

    #
# This configuration file allows the manual to be accessed at 
# http://localhost/manual/
#
AliasMatch ^/manual(?:/(?:de|en|fr|ja|ko|ru))?(/.*)?$ "/var/www/manual$1"

<Directory "/var/www/manual">
    Options Indexes
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

    
  

Config Details

Location
/etc/httpd/conf.d/manual.conf
Operating system
CentOS Linux 6
Length
12 lines
MD5 checksum
c2bc3d852f5ffa7cd85f6edf184ba02e

Usage

Download the raw file with wget or curl

Wget

wget -O manual.conf.example https://exampleconfig.com/static/raw/apache/centos6/etc/httpd/conf.d/manual.conf

cURL

curl https://exampleconfig.com/static/raw/apache/centos6/etc/httpd/conf.d/manual.conf > manual.conf.example