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>
Download the raw file with wget or curl
wget -O manual.conf.example https://exampleconfig.com/static/raw/apache/centos8/etc/httpd/conf.d/manual.conf
curl https://exampleconfig.com/static/raw/apache/centos8/etc/httpd/conf.d/manual.conf > manual.conf.example
Other config files you might find useful