Apache manual.conf configuration example for CentOS Linux 8

Get the default configuration file manual.conf for Apache, optimized for CentOS Linux 8. 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/
#
Alias /manual /usr/share/httpd/manual

<Directory "/usr/share/httpd/manual">
    Options Indexes
    AllowOverride None
    Require all granted

    RedirectMatch 301 ^/manual/(?:da|de|en|es|fr|ja|ko|pt-br|ru|tr|zh-cn)(/.*)$ "/manual$1"
</Directory>

    
  

Config Details

Location
/etc/httpd/conf.d/manual.conf
Operating system
CentOS Linux 8
Length
13 lines
MD5 checksum
b448cff73e6ae8b3ef56b7f434aa9682

Usage

Download the raw file with wget or curl

Wget

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

cURL

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