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

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

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

    ScriptAlias /iipsrv /usr/libexec/iipsrv/iipsrv.fcgi

# Set our environment variables for the IIP server
DefaultInitEnv VERBOSITY "1"
DefaultInitEnv LOGFILE "/var/log/httpd/iipsrv.log"
DefaultInitEnv MAX_IMAGE_CACHE_SIZE "10"
DefaultInitEnv JPEG_QUALITY "90"
DefaultInitEnv MAX_CVT "3000"
# Define the idle timeout as unlimited and the number of
# processes we want
FcgidIdleTimeout -1
FcgidMaxProcessesPerClass 1

<Directory /usr/libexec/iipsrv/>
    <IfModule mod_authz_core.c>
        # Apache 2.4
        Require all granted
    </IfModule>
    <IfModule !mod_authz_core.c>
        # Apache 2.2
        Order allow,deny
        Allow from All
    </IfModule>
</Directory>



    
  

Config Details

Location
/etc/httpd/conf.d/iipsrv.conf
Operating system
CentOS Linux 6
Length
26 lines
MD5 checksum
a9f90b35629b3fecb76285608239812c

Usage

Download the raw file with wget or curl

Wget

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

cURL

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