Project

General

Profile

Howto Redmine » History » Revision 5

Revision 4 (stbuehler, 2011-10-10 14:12) → Revision 5/6 (stbuehler, 2011-10-10 14:12)

h1. Howto Redmine 

 Simple redmine setup, see [[Howto_Rails]] for more details. 

 <pre> 
 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; 
 </pre>