Apache Server Information の設定 (Apache2.2.22 ,Debian7.4)

この記事は約2分で読めます。
スポンサーリンク

Apache/2.2.22 (Debian7.4)

ローカルの試験サーバーのIPアドレスを

192.168.0.10

とする。

以前書いたApache Server Status の設定 (Apache2.2.22 ,Debian)と同様であるが、

/etc/apache2/mods-available/info.conf

<Location /server-info>
 SetHandler server-info
 Order deny,allow
 Deny from all
#Allow from 127.0.0.1 ::1
 Allow from 192.168.0 ::1
#Allow from 192.0.2.0/24
</Location>

とするのはApache Server Statusと同じだが、Apacheの再起動だけでは有効にならない。

コマンドで

a2enmod info

を実行すると、

Enabling module info.
To activate the new configuration, you need to run:

と表示されるので、Apacheを再起動

service apache2 restart

すると、

http://192.168.0.10/server-info/

で見ることができるようになる。

当然だが、rootでないと操作できないので注意。

サーバ構築の実際がわかる Apache[実践]運用/管理 (Software Design plus)
鶴長 鎮一
技術評論社
売り上げランキング: 22,001
タイトルとURLをコピーしました