https://github.com/JuliaLang/julia
Raw File
Tip revision: bddb70374fdbb2256782398c13430fa4d8b55d0b authored by Jeff Bezanson on 07 March 2013, 08:45:48 UTC
Merge branch 'release-0.1' of github.com:JuliaLang/julia into release-0.1
Tip revision: bddb703
lighttpd.conf
server.document-root = "../../ui/website"

server.port = 2000

server.modules = (
               "mod_scgi",
               "mod_access",
               "mod_alias",
               "mod_compress",
               "mod_redirect",
)

mimetype.assign = (
  ".html" => "text/html", 
  ".htm" => "text/html", 
  ".txt" => "text/plain",
  ".jpg" => "image/jpeg",
  ".png" => "image/png",
  ".css" => "text/css",
  ".js" => "application/javascript",
)

static-file.exclude-extensions = ( ".fcgi", "~", ".inc" )

index-file.names            = ( "index.html", "index.htm", "default.htm" )

scgi.debug = 0
scgi.server = (
  ".scgi" =>
  (( "host" => "127.0.0.1",
     "port" => 2001
  ))
)
back to top