FastHandle - IT Operations Examples

FastHandle is fast operation tools for infrastructure configurations and tests.

User Tools

Site Tools


Sidebar


Top     SiteMap

Manager Server

Target Server

$FHHOME/bin/xxx.sh | xxxx.exp













.

Action disabled: source
middleware:httpd:centos_httpd2.4.html



Apache httpd (httpd.py)

Apache httpd 2.4 Configuration for RHEL/CentOS

/etc/httpd/conf/httpd.conf

#===============================================================================
# /etc/httpd/conf/httpd.conf
#    -rw-r--r-- root root
#
#===============================================================================
ServerRoot "/etc/httpd"
Listen 80
Include conf.modules.d/*.conf
User apache
Group apache
ServerAdmin root@localhost

<Directory />
    AllowOverride none
    Require all denied
</Directory>

DocumentRoot "/var/www/html"

<Directory "/var/www">
    AllowOverride None
    Require all granted
</Directory>

<Directory "/var/www/html">
    Options -Indexes FollowSymLinks
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    AllowOverride All
    Require all granted
</Directory>

<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

<Files ".ht*">
    Require all denied
</Files>

<Location /server-status>
    #Permit Private IP
    Require ip 127.0.0.1 192.168.0.0/16 172.16.0.0/12 10.0.0.0/16
</Location>

#-------------------------------------------------------------------------------
# log
#-------------------------------------------------------------------------------
ErrorLog "logs/error_log"
LogLevel warn

<IfModule log_config_module>
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
      LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    CustomLog "logs/access_log" combined
</IfModule>

<IfModule mime_module>
    TypesConfig /etc/mime.types
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
</IfModule>

AddDefaultCharset UTF-8

<IfModule mime_magic_module>
    MIMEMagicFile conf/magic
</IfModule>


EnableSendfile on
IncludeOptional conf.d/*.conf



#-------------------------------------------------------------------------------
# Security
#-------------------------------------------------------------------------------
# Prod=Product Minimize HTTP reply header
ServerTokens Prod

# Suppress error page footer
ServerSignature Off

# Disable Trace Medhod
TraceEnable Off




Apache httpd (httpd.py)



Apache httpd (httpd.py)



middleware/httpd/centos_httpd2.4.html.txt ยท Last modified: 2020/02/26 01:35 by kurihara