Project

General

Profile

Actions

Howto Redmine » History » Revision 1

Revision 1/6 | Next »
stbuehler, 2009-11-12 21:32


Howto Redmine

Simple redmine setup.

setup {
    module_load ( "mod_expire", "mod_fastcgi", "mod_vhost" );
}

var.vhosts = [];

# ...

var.vhosts = var.vhosts + [
    "redmine.lighttpd.net": ${
        docroot "/var/www/servers/redmine.lighttpd.net/redmine/public/";

        if req.path =^ "/export/special" { access.deny; }

        if physical.is_file {
            header.add ("X-cleanurl", "hit");
        } else {
            header.add ("X-cleanurl", "miss");
            fastcgi "unix:/var/run/lighttpd/sockets/redmine.sock";
        }

        # static files
        if req.path =~ "^/(images|javascripts|themes|stylesheets|help|plugin_assets)/" {
            expire "access 1 week";
        }
    }
];

# ...

vhost.map var.vhosts;

Updated by stbuehler over 14 years ago · 1 revisions