View Single Post
  #3 (permalink)  
Old 16-03-2007, 12:58 AM
rockdalinux's Avatar
rockdalinux rockdalinux is offline
Is that all you got?
User
 
Join Date: May 2005
Location: Planet Vegeta
OS: Redhat
Posts: 708
Thanks: 15
Thanked 19 Times in 18 Posts
Rep Power: 10
rockdalinux is a glorious beacon of light rockdalinux is a glorious beacon of light rockdalinux is a glorious beacon of light rockdalinux is a glorious beacon of light rockdalinux is a glorious beacon of light rockdalinux is a glorious beacon of light
Default

Have you created /var/www/logs/ directory? See if you get logs there

Personally I am using something as follows (simple and easy to follow)

Code:
$HTTP["host"] == "domain1.com" {
  server.document-root = "/var/www/domain1.com"
  server.errorlog = "/var/log/lighttpd/domain1.com/error.log"
  accesslog.filename = "/var/log/lighttpd/domain1.com/access.log"
}

$HTTP["host"] == "domain2.com" {
  server.document-root = "/var/www/domain2.com"
  server.errorlog = "/var/log/lighttpd/domain2.com/error.log"
  accesslog.filename = "/var/log/lighttpd/domain2.com/access.log"
}
__________________
Rocky Jr.
What's wrong? I hope I am not making you uncomfortable...

Never send a boy to do a mans job.
Reply With Quote