/etc/httpd/conf.d/mirmon.conf - CentOS Linux 6

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

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

    #
#  Mirmon Apache Configuration file
#

Alias /mirmon /usr/share/mirmon

<Directory /usr/share/mirmon>
    <IfModule mod_authz_core.c>
        # Apache 2.4
       Require local
        # Use the following to let any client use mirmon
       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 mirmon
        # Allow from All
    </IfModule>
</Directory>


    
  

Config Details

Location
/etc/httpd/conf.d/mirmon.conf
Operating system
CentOS Linux 6
Length
24 lines
MD5 checksum
a2935e72d74ac7b06bd6bb895de709cb

Usage

Download the raw file with wget or curl

Wget

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

cURL

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