yazdmich

Untitled

Nov 24th, 2015
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. root@irc:/var/www# cat /etc/lighttpd/lighttpd.conf
  2. server.document-root = "/var/www/"
  3.  
  4.  
  5. $HTTP["host"] == "images.bytes.coffee" {
  6. server.document-root = "/var/www/images/"
  7. }
  8.  
  9. server.port = 80
  10.  
  11. server.username = "www"
  12. server.groupname = "www"
  13.  
  14. mimetype.assign = (
  15. ".html" => "text/html",
  16. ".txt" => "text/plain",
  17. ".css" => "text/css",
  18. ".jpg" => "image/jpeg",
  19. ".png" => "image/png"
  20. )
  21.  
  22. static-file.exclude-extensions = ( ".conf", ".fcgi", ".php", ".rb", "~", ".inc" )
  23. index-file.names = ( "index.html" )
Advertisement
Add Comment
Please, Sign In to add comment