# ここから--- NameVirtualHost *:80 # Set up permissions for VirtualHosts in ~/Sites # 「サイト」フォルダの中のパーミッション設定 Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all # For http://localhost in the OS X default location # http://localhost でアクセスした際に表示される、 # システムデフォルトのドキュメントルートの場所 ServerName localhost DocumentRoot /Library/WebServer/Documents # VirtualHosts settings # ここから下が自分でカスタマイズする場合のテンプレート。 # 追加する場合は、以下の内容をコピーして書き換えるだけ。 # ServerName domain.local # DocumentRoot "/Users/自分のユーザー名/Sites/domain.local" # DirectoryIndex index.html index.php # CustomLog "/Users/自分のユーザー名/Sites/logs/domain.local-access_log" combined # ErrorLog "/Users/自分のユーザー名/Sites/logs/domain.local-error_log" # ---ここまで