Actions
Howto Redmine » History » Revision 2
« Previous |
Revision 2/6
(diff)
| Next »
stbuehler, 2009-11-12 21:50
Howto Redmine¶
Simple redmine setup, see Howto_Rails for more details.
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 about 15 years ago · 2 revisions