http://jobeet.symfony.gr.jp/day-1-starting-up-the-project.html#symfony-2-3-2

上記サイトを参考にsymfony2プロジェクト作成のWebサーバー設定を実施したところ
apacheエラーで起動できなくなってしまいました。

 Error: Apache shutdown unexpectedly.
17:15:36  [Apache]  This may be due to a blocked port, missing dependencies, 
17:15:36  [Apache]  improper privileges, a crash, or a shutdown by another method.
17:15:36  [Apache]  Press the Logs button to view error logs and check
17:15:36  [Apache]  the Windows Event Viewer for more clues
17:15:36  [Apache]  If you need more help, copy and post this
17:15:36  [Apache]  entire log window on the forums

各設定は以下のようにしております。

【マシン】

windows

【apache:httpd.conf】

  DocumentRoot "C:/xampp/htdocs"  <Directory
 "C:/xampp/htdocs">

【apache:httpd-vhosts.conf】

  <VirtualHost *:80>
     ServerName jobeet.local
     DocumentRoot /var/www/jobeet/web
     DirectoryIndex app.php
     ErrorLog /var/log/apache2/jobeet-error.log
     CustomLog /var/log/apache2/jobeet-access.log combined
     <Directory "/var/www/jobeet/web">
         AllowOverride All
         Allow from All
      </Directory>  </VirtualHost>

【C:\Windows\System32\drivers\etc\hosts】

127.0.0.1 jobeet.local  ←追記

【jobeetプロジェクト格納場所】

C:\var\www\jobeet

以上の設定で、どこが間違っているかわかる方いらっしゃいますでしょうか。
よろしくお願いします。