Apache使ってみたのでそれの作業メモ
参考サイト
Apacheのインストールと設定 http://itochif.com/contents/Linux/centos5/web/apache_00100.html
PHP5インストール http://tech.hitsug.net/?CentOS%2FPHP%2FPHP5%2Fyum%20%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB
LinuxにApacheをインストールする http://2php.jp/php/install_apache_linux.html
ドキュメントルート http://www.adminweb.jp/apache/docroot/index1.html
Apacheをダウンロード(http://httpd.apache.org/download.cgi)
Unix Source...のとこ
# wget http://www.meisei-u.ac.jp/mirror/apache/dist/httpd/httpd-2.*.*.tar.gz(Apacheのサイトから)
# tar -zxvf httpd-2.x.xx.tar.gz
でもなぜかApacheはいってたのでインストールせず。。。
こちらで確認。
設定ファイルの場所
/etc/httpd/conf/httpd.conf
Apacheの起動
Apacheの停止
ドキュメントルートの確認
→httpd.confでDocumentRootを検索して確認
#
# 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"
以上。