この質問がよく見られていることは知っていますが、ここでの解決策はそれらを解決していません.
少し背景情報から始めましょう。
OS X 10.8.4 アパッチ 2.2.22
問題: コンソールにこのエラーが表示され、Apache はローカルホストを見つけられませんが、正常に起動します。変。
[Sat Aug 17 13:40:06 2013] [info] mod_ssl/2.2.22 compiled against Server: Apache/2.2.22, Library: OpenSSL/0.9.8r
httpd: Could not reliably determine the server's fully qualified domain name, using Specter.local for ServerName
したがって、通常、これは ServerName が正しく設定されていないことを示しています。それは :/ で、Spectre.local、localhost などのさまざまなバリアントを試してみました
これは私の/private/etc/httpd.confのコピーです。これは/private/etc/apache2/httpd.confでも同じです
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
ServerName localhost
私のホストファイルは次のように設定されています:
127.0.0.1 localhost localhost.local
255.255.255.255 broadcasthost
127.0.0.1 themill.dev
127.0.0.1 phpmyadmin.dev
127.0.0.1 Specter.local
私の /private/etc/apache2/users/ta.conf には次のものがあります
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
# DEV: THEMILL SITE
<VirtualHost *:80>
ServerAdmin test@dummy.com
DocumentRoot "/Users/ta/Sites/themill/htdocs"
ServerName themill.dev
ServerAlias *.themill.dev
ErrorLog "/Users/ta/Sites/themill/log/error_log"
CustomLog "/Users/ta/Sites/themill/log/access_log" common
</VirtualHost>
# PHPMYADMIN
<VirtualHost *:80>
ServerAdmin test@dummy.com
DocumentRoot "/Users/ta/Sites/phpmyadmin"
ServerName phpmyadmin.dev
ServerAlias *.phpmyadmin.dev
ErrorLog "/Users/ta/Sites/phpmyadmin/log/error_log"
CustomLog "/Users/ta/Sites/phpmyadmin/log/access_log" common
</VirtualHost>
他に何を実際に構成する必要があるのか わかりません。以前は機能していましたが、10.7 のアップグレードを投稿しても機能しませんでした。今は解決しようとしているところです。
さらに情報が必要な場合はお知らせください。