## SYMFONY_PROJECT project virtual hosting
##

server.modules += ( "mod_simple_vhost" , "mod_rewrite" )

$HTTP ["host"] == "SYMFONY_PROJECT" {
  server.document-root = "/home/sfprojects/SYMFONY_PROJECT/web"
  server.indexfiles = ( "index.php", "index.html")
  alias.url            = (
      "/sf/"           => "/usr/share/php/data/symfony/web/sf/"
    )
  server.error-handler-404 = "/index.php"
}
