TOP » Apache HTTP Server で Web サーバー構築 » Apache 1.3 » Apache 1.3 の設定

Apache 1.3 の設定

Apache をインストールしたあとは、デフォルトの設定ファイルが作成されます。
Apache の実行にはこの設定ファイルを使いますが、起動するための最低限の設定を行う必要があります。
Apache の設定は httpd.conf ファイルを使って行います。

Apache の基本的な設定

Apache を起動するために必要な設定を行います。
設定する箇所は ServerAdmin ディレクティブと ServerName ディレクティブです。

# vi /usr/local/httpd/conf/httpd.conf
/usr/local/httpd/conf/httpd.conf
297 行目辺り
#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.
#
ServerAdmin webmaster@honana.com.comサーバー管理者のメールアドレス

#
# ServerName allows you to set a host name which is sent back to clients for
# your server if it’s different than the one the program would get (i.e., use
# “www” instead of the host’s real name).
#
# Note: You cannot just invent host names and hope they work. The name you 
# define here must be a valid DNS name for your host. If you don’t understand
# this, ask your network administrator.
# If your host doesn’t have a registered DNS name, enter its IP address here.
# You will have to access it by its address (e.g., http://123.45.67.89/)
# anyway, and this will make redirections work in a sensible way.
#
# 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your 
# machine always knows itself by this address. If you use Apache strictly for 
# local testing and development, you may use 127.0.0.1 as the server name.
#
ServerName server.honana.com.comホスト名

以下省略

httpd.conf の書式チェック

apachectl 制御スクリプト を使って Apache の設定ファイル httpd.conf の書式チェックを行うことができます。

# /usr/local/httpd/bin/apachectl configtest

Syntax OK
カテゴリー
Fedora のインストール
ネットワーク設定
OpenSSH で SSH サーバー構築
NTP で時刻情報サーバー構築
Apache HTTP Server で Web サーバー構築
MySQL でデーターベースサーバー構築
PostgreSQL でデーターベースサーバー構築
PHP で Web アプリケーションサーバー構築
qmail でメールサーバー構築
Samba でファイルサーバー構築
BIND でネームサーバー構築
Tomcat で Web アプリケーションサーバー構築
ProFTPD で FTP サーバー構築
システム設定
CMS でサイト構築
snort でネットワーク進入探知システム構築
ライブラリのインストール