・サーバーネームとディレクトリに関する記述を全てコメント化

[root@alma]# vi /etc/httpd/conf/httpd.conf

≪ 途中省略 ≫

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName www.papa-net.com:80
※コメント化
#ServerName www.papa-net.com:80

≪ 途中省略 ≫

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html"
※コメント化
#DocumentRoot "/var/www/html"

#
# Relax access to content within /var/www.
#
#<Directory "/var/www">
※コメント化
#<Directory "/var/www">
# AllowOverride None
# Allow open access:
# Require all granted
</Directory>
※コメント化
#</Directory>

# Further relax access to the default document root:
<Directory "/var/www/html">
※コメント化
#<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options FollowSymLinks
※コメント化
#Options FollowSymLinks

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
※コメント化
#AllowOverride All
#
# Controls who can get stuff from this server.
#
# Require all granted
</Directory>
※コメント化
#</Directory>

≪ 途中省略 ≫

<IfModule alias_module>
※コメント化
#<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar

#
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a section to allow access to
# the filesystem path.

#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
#
ScriptAlias /cgi-bin/ "/home/xxxx/www/cgi-bin/"
※コメント化
#ScriptAlias /cgi-bin/ "/home/xxxx/www/cgi-bin/"

</IfModule>
※コメント化
#</IfModule>

#
# "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "/home/xxxx/www/cgi-bin">
※コメント化
#<Directory "/home/xxxx/www/cgi-bin">
# AllowOverride None
Options Includes ExecCGI FollowSymLinks
※コメント化
#Options Includes ExecCGI FollowSymLinks
# Require all granted
</Directory>
※コメント化
#</Directory>

≪ 以下省略 ≫