操作
Redmine 操作指南¶
简单的 Redmine 设置,详见 Rails 操作指南 了解更多详情。
setup {
module_load ( "mod_access", "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;