apache 起動時の警告
Forcing reload of web server (apache2)...apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName waiting apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
Debian や Ubuntu にて デフォルトの ServerName を設定していなかったため警告が表示されていた様だ。
/etc/apache2/sites-available/default ファイルに
ServerName localhost <VirtualHost *:80> :
の様に<VirtualHost> ディレクティブ外にServerName を設定しておけば良かった。
また、DocumentRootにも同様の問題がある。
http://d.hatena.ne.jp/okinaka/20090128#1233138739