Skip to content

Commit

Permalink
Merge branch 'develop-cfa' of git.assembla.com:lp-changebyus into dev…
Browse files Browse the repository at this point in the history
…elop-cfa
  • Loading branch information
zzolo committed Jul 29, 2011
2 parents dd95298 + f4b1392 commit 82b976f
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions lighttpd.conf.sample
Expand Up @@ -47,13 +47,13 @@ var.cachedir = "./run/cache"
#--------------------------------------------------------------------
# Various server settings.
#
#--------------------------------------------------------------------
#--------------------------------------------------------------------
server.port = 8080
server.pid-file = var.pidfile
server.username = var.username
server.groupname = var.groupname
server.document-root = var.docroot
server.errorlog = var.errorlog
server.document-root = var.docroot
server.errorlog = var.errorlog
accesslog.filename = var.accesslog


Expand All @@ -68,15 +68,16 @@ server.modules = (
"mod_access",
"mod_fastcgi",
"mod_accesslog",
"mod_auth"
"mod_auth",
"mod_compress"
)


# Fast CGI settings
#--------------------------------------------------------------------
# Settings for Fast CGI.
#
#--------------------------------------------------------------------
#--------------------------------------------------------------------
fastcgi.server = ("/main.py" =>
(( "socket" => "/tmp/fastcgi.socket",
"bin-path" => var.binpath,
Expand Down Expand Up @@ -134,10 +135,10 @@ url.rewrite-once = (
"^/favicon.ico$" => "/static/util/favicon.ico",
"^/css/(.*)$" => "/static/css/$1",
"^/img/(.*)$" => "/static/img/$1",
"^/js/(.*)$" => "/static/js/$1",
"^/swf/(.*)$" => "/static/swf/$1",
"^/js/(.*)$" => "/static/js/$1",
"^/swf/(.*)$" => "/static/swf/$1",
"^/static/(.*)$" => "/static/$1",
"^/xml/(.*)$" => "/static/xml/$1",
"^/xml/(.*)$" => "/static/xml/$1",
"^/(.*)$" => "/main.py/$1"
)

Expand Down

0 comments on commit 82b976f

Please sign in to comment.