44行目:OSをProdに変更
		ServerTokens OS
		 ↓
		ServerTokens Prod
		74行目:キープアライブOffをOnに変更
		KeepAlive Off
		 ↓
		KeepAlive On
		251行目 管理者のメールアドレスを変更
		ServerAdmin root@localhost
		 ↓
		ServerAdmin webmaster@vps-tora.com
		265行目 コメントを解除してサーバ名を変更
		#ServerName www.example.com:80
		 ↓
		ServerName vps-tora.com:80
		281行目 ドキュメントルート指定(必要なら)
		DocumentRoot “/var/www/html”
		 ↓
		DocumentRoot “/home/web/public_html”
		306行目 ドキュメントルート・ディレクティブ(必要なら)
		<Directory “/var/www/html”>
		 ↓
		<Directory “/home/web/public_html”>
		320行目 indexesを削除
		Options Indexes FollowSymLinks
		 ↓
		Options FollowSymLinks
		327行目 NoneをAllに変更
		AllowOverride None
		 ↓
		AllowOverride All
		391行目 ディレクトリ名でアクセスできるファイル名
		DirectoryIndex index.html index.html.var
		 ↓
		DirectoryIndex index.html index.php
		524行目 OnをOffに変更
		ServerSignature On
		 ↓
		ServerSignature Off
		731行目:jaを先頭に移動
		LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
		 ↓
		LanguagePriority ja en ca cs da de el eo es et fr he hr it ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
		747行目:コメントアウト
		AddDefaultCharset UTF-8
		 ↓
		#AddDefaultCharset UTF-8
	
		305行 OnをOffに変更
		expose_php = On
		 ↓
		expose_php = Off
		348行 コメントを解除
		;error_reporting = E_ALL & ~E_NOTICE
		 ↓
		error_reporting = E_ALL & ~E_NOTICE
		360行 コメントアウト
		error_reporting  =  E_ALL
		 ↓
		;error_reporting  =  E_ALL
		367行 OffをOnに変更
		display_errors = Off
		 ↓
		display_errors = On
	
httpd を起動中: [ OK ]