apache.VirtualHost (vhost) 282 B

1234567891011
  1. # This was cloned from a TextMate bundle for yasnippet.
  2. #name : VirtualHost (vhost)
  3. #key : vhost
  4. # --
  5. <VirtualHost ${1:example.org}>
  6. ServerAdmin webmaster@$1
  7. DocumentRoot /www/vhosts/$1
  8. ServerName $1
  9. ErrorLog logs/$1-error_log
  10. CustomLog logs/$1-access_log common
  11. </VirtualHost>