Get the default configuration file sysusage.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/sysusage.conf.
For more configurations and setup guides, visit our related files section to further customize your system.
#
# SysUsage Apache Configuration file
#
Alias /sysusage /var/www/sysusage
<Directory /var/www/sysusage>
<IfModule mod_authz_core.c>
# Apache 2.4
Require local
# Use the following to let any client use sysusage
Require all granted
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order Deny,Allow
Deny from All
Allow from 127.0.0.1 # localhost
Allow from ::1 # IPv6 variant of localhost
# Use the following to let any client use sysusage
# Allow from All
</IfModule>
</Directory>
Download the raw file with wget or curl
wget -O sysusage.conf.example https://exampleconfig.com/static/raw/apache/centos8/etc/httpd/conf.d/sysusage.conf
curl https://exampleconfig.com/static/raw/apache/centos8/etc/httpd/conf.d/sysusage.conf > sysusage.conf.example
Other config files you might find useful