/etc/httpd/conf.d/sysusage.conf - CentOS Linux 8

This is the default example configuration of sysusage.conf provided by Apache. This config file was generated by Apache running on CentOS 8.

It is located under: /etc/httpd/conf.d/sysusage.conf

    #
#  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>


    
  

Config Details

Location
/etc/httpd/conf.d/sysusage.conf
Operating system
CentOS Linux 8
Length
24 lines
MD5 checksum
e19ad521fbf01796b9ff25226de0df35

Usage

Download the raw file with wget or curl

Wget

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

cURL

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