Browse Source

lighttpd conf update

Danja Vasiliev 10 years ago
parent
commit
60d5344ed1
3 changed files with 164 additions and 0 deletions
  1. 83 0
      debian/etc/lighttpd/lighttpd.conf
  2. 78 0
      debian/etc/lighttpd/mime.conf
  3. 3 0
      debian/etc/lighttpd/vars.sh

+ 83 - 0
debian/etc/lighttpd/lighttpd.conf

@@ -0,0 +1,83 @@
+server.modules = (
+ "mod_access",
+ "mod_cgi",
+ "mod_compress",
+ "mod_accesslog",
+ "mod_rewrite",
+ "mod_alias",
+ "mod_auth",
+ "mod_setenv",
+# "mod_status",
+# "mod_alias",
+# "mod_redirect",
+# "mod_debug"
+)
+
+server.document-root = "/www/htdocs"
+server.upload-dirs = ( "/tmp" )
+server.errorlog = "/tmp/lighttpd-error.log"
+accesslog.filename = "/tmp/lighttpd-access.log"
+server.pid-file = "/var/run/lighttpd.pid"
+server.username = "httpd"
+server.groupname = "nogroup"
+server.port = 80
+
+## defines var.superglueVersion from /etc/superglue_version
+include_shell "/etc/lighttpd/vars.sh"
+
+setenv.add-response-header = ( "X-SuperGlue-Version" => var.superglueVersion )
+
+#debug.log-request-handling = "enable"
+#debug.log-request-header = "enable"
+#debug.log-file-not-found	= "enable"
+#debug.log-request-header-on-error = "enable"
+#debug.log-response-header = "enable"
+#debug.log-condition-handling	= "enable"
+
+auth.backend = "htdigest"
+auth.backend.htdigest.userfile = "/www/lib/admin/htpasswd"
+#auth.debug = 2
+
+#setenv.add-response-header = ( "Access-Control-Allow-Origin" => "*" )
+compress.cache-dir = "/tmp/lighttpd/compress"
+compress.filetype = ( "application/x-javascript", "text/css", "text/html", "text/plain" )
+
+index-file.names = ( "index.html", "default.html" )
+
+cgi.assign = ( ".sh" => "/bin/bash" )
+url.access-deny = ( "~", ".inc", ".htaccess", ".htpasswd", "htpasswd")
+
+$HTTP["request-method"] == "GET" {
+  url.rewrite = ( "^/resources/(.*)$" => "resources/$1",
+                  "^/devTools/(.*)$" => "devTools/$1",
+                  "^/templates/(.*)$" => "templates/$1",
+                  "^/admin/(.*)$" => "admin/admin.sh" )
+
+  alias.url = ( "/resources" => "/www/lib/resources",
+                "/devTools" => "/www/lib/devTools",
+                "/templates" => "/www/lib/templates",
+                "/admin" => "/www/lib/admin" )
+}
+
+$HTTP["request-method"] == "POST" {
+  url.rewrite = ( "^(/(?!admin).*)" => "post.sh",
+                  "^(/(admin).*)" => "admin.sh" 
+  )
+  $HTTP["url"] =~ "^/post.sh" {
+    server.document-root = "/www/lib/cgi"
+  }
+  $HTTP["url"] =~ "^/admin.sh" {
+    server.document-root = "/www/lib/admin"
+   }
+}
+
+auth.require = ( 
+  "/post.sh" => ( "method" => "digest", 
+                  "realm" => "superglue", 
+                  "require" => "valid-user" ),
+  "/admin" => ( "method" => "digest", 
+                  "realm" => "superglue", 
+                  "require" => "valid-user" )
+  )
+
+include "/etc/lighttpd/mime.conf"

+ 78 - 0
debian/etc/lighttpd/mime.conf

@@ -0,0 +1,78 @@
+#######################################################################
+##
+##  MimeType handling
+## -------------------
+##
+## http://www.lighttpd.net/documentation/configuration.html#mimetypes
+##
+## Use the "Content-Type" extended attribute to obtain mime type if
+## possible
+##
+mimetype.use-xattr        = "disable"
+
+##
+## mimetype mapping
+##
+mimetype.assign             = (
+  ".pdf"          =>      "application/pdf",
+  ".sig"          =>      "application/pgp-signature",
+  ".spl"          =>      "application/futuresplash",
+  ".class"        =>      "application/octet-stream",
+  ".ps"           =>      "application/postscript",
+  ".torrent"      =>      "application/x-bittorrent",
+  ".dvi"          =>      "application/x-dvi",
+  ".gz"           =>      "application/x-gzip",
+  ".pac"          =>      "application/x-ns-proxy-autoconfig",
+  ".swf"          =>      "application/x-shockwave-flash",
+  ".tar.gz"       =>      "application/x-tgz",
+  ".tgz"          =>      "application/x-tgz",
+  ".tar"          =>      "application/x-tar",
+  ".zip"          =>      "application/zip",
+  ".mp3"          =>      "audio/mpeg",
+  ".m3u"          =>      "audio/x-mpegurl",
+  ".wma"          =>      "audio/x-ms-wma",
+  ".wax"          =>      "audio/x-ms-wax",
+  ".ogg"          =>      "application/ogg",
+  ".wav"          =>      "audio/x-wav",
+  ".gif"          =>      "image/gif",
+  ".jpg"          =>      "image/jpeg",
+  ".jpeg"         =>      "image/jpeg",
+  ".png"          =>      "image/png",
+  ".xbm"          =>      "image/x-xbitmap",
+  ".xpm"          =>      "image/x-xpixmap",
+  ".xwd"          =>      "image/x-xwindowdump",
+  ".css"          =>      "text/css",
+  ".html"         =>      "text/html",
+  ".htm"          =>      "text/html",
+  ".js"           =>      "text/javascript",
+  ".asc"          =>      "text/plain",
+  ".c"            =>      "text/plain",
+  ".cpp"          =>      "text/plain",
+  ".log"          =>      "text/plain",
+  ".conf"         =>      "text/plain",
+  ".text"         =>      "text/plain",
+  ".txt"          =>      "text/plain",
+  ".spec"         =>      "text/plain",
+  ".dtd"          =>      "text/xml",
+  ".xml"          =>      "text/xml",
+  ".mpeg"         =>      "video/mpeg",
+  ".mpg"          =>      "video/mpeg",
+  ".mov"          =>      "video/quicktime",
+  ".qt"           =>      "video/quicktime",
+  ".avi"          =>      "video/x-msvideo",
+  ".asf"          =>      "video/x-ms-asf",
+  ".asx"          =>      "video/x-ms-asf",
+  ".wmv"          =>      "video/x-ms-wmv",
+  ".bz2"          =>      "application/x-bzip",
+  ".tbz"          =>      "application/x-bzip-compressed-tar",
+  ".tar.bz2"      =>      "application/x-bzip-compressed-tar",
+  ".rpm"          =>      "application/x-rpm",
+  # make the default mime type application/octet-stream.
+  # ""              =>      "application/octet-stream",
+  ""              =>      "text/html",
+ )
+
+
+#
+#######################################################################
+

+ 3 - 0
debian/etc/lighttpd/vars.sh

@@ -0,0 +1,3 @@
+#!/bin/bash
+
+echo 'var.superglueVersion="'$(cat /etc/superglue_version)'"'