1. 마이그레이션

1-1. 접근 제어 선언 방식 변경

  1. 모든 요청 거부
# 2.2 설정
Order deny,allow
Deny from all

# 2.4 설정
Require all denied
  1. 모든 요청 허용
# 2.2 설정
Order allow,deny
Allow from all

# 2.4 설정
Require all granted
  1. example.org 허용 나머지 거부
# 2.2 설정
Order Deny,Allow
Deny from all
Allow from example.org

# 2.4 설정
Require all denied
Require host example.org
  1. 127.0.0.1 허용 나머지 거부
# 2.2 설정
Order Deny,Allow
Deny from all
Allow from 127.0.0.1

# 2.4 설정
Require all denied
Require ip 127.0.0.1

1-2. 속성/모듈 변경

<IfModule mpm_prefork_module>
    StartServers          30
    MinSpareServers       30
    MaxSpareServers      128
    ServerLimit         1024
    MaxClients          1024 # MaxClients -> MaxRequestWorkers
    MaxRequestsPerChild  100000 # MaxRequestsPerChild -> MaxConnectionsPerChild
</IfModule>

...

KeepAlive Off # 속성은 On 이나 Off 중 하나의 값을 가질수 있다.
<Directory "/home1/irteam/deploy/doc_base">
        Options -Indexes FollowSymLinks MultiViews # Options -Indexes +IncludesNoExec +FollowSymLinks +MultiViews
        AllowOverride None # 명시적으로 선언
        Order allow,deny
        Allow from all
        FileETag None # 명시적으로 선언
</Directory>

2. 오류로그 및 해결책

오류 1