Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 4th, 2012  |  syntax: None  |  size: 0.77 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <VirtualHost *>
  2.  
  3.   ServerName oviesse.com
  4.   ServerAlias dev.*.oviesse.com
  5.   ServerAlias 10.10.10.141
  6.   ServerAlias *.ovs.dev prova1.it prova2.it test1.co.uk test2.us
  7.   DocumentRoot "/home/pleone/workspaces/ovs/web"
  8.   DirectoryIndex index.php
  9.  
  10.   Alias /sf /home/pleone/workspaces/ovs/lib/vendor/symfony/data/web/sf/
  11.   <Directory "/home/pleone/workspaces/ovs/lib/vendor/symfony/data/web/sf">
  12.     AllowOverride All
  13.     Allow from All
  14.     #Allow from 127.0.0.1 ::1
  15.   </Directory>
  16.  
  17.   <Directory "/home/pleone/workspaces/ovs/web">
  18.     AllowOverride All
  19.     Allow from All
  20. #   Allow from 127.0.0.1 ::1
  21.   </Directory>
  22.  
  23.   SetEnv HART_APP_ENV dev
  24.   SetEnv HART_APP_DEBUG true
  25.  
  26.   <DirectoryMatch .*\.svn>
  27.     Order allow,deny
  28.     Deny from all
  29.     Satisfy All
  30.   </DirectoryMatch>
  31.  
  32. </VirtualHost>