Advertisement
scratch613

Untitled

Jul 7th, 2011
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName ecard.int
  3. ServerAlias www.ecard.int
  4. ServerAdmin webmaster@localhost
  5.  
  6. DocumentRoot /home/scratch/workspace/ecard/public
  7. <Directory />
  8. Options FollowSymLinks
  9. AllowOverride None
  10. </Directory>
  11. <Directory /home/scratch/workspace/ecard/public>
  12. Options Indexes FollowSymLinks MultiViews
  13. AllowOverride All
  14. Order allow,deny
  15. allow from all
  16. </Directory>
  17.  
  18. ErrorLog /var/log/apache2/error.log
  19.  
  20. # Possible values include: debug, info, notice, warn, error, crit,
  21. # alert, emerg.
  22. LogLevel warn
  23.  
  24. CustomLog /var/log/apache2/access.log combined
  25.  
  26. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement