[DRE-commits] r4738 - in trunk/redmine/debian: . doc/examples

Jérémy Lal kapouer-guest at alioth.debian.org
Thu Feb 18 03:12:06 UTC 2010


Author: kapouer-guest
Date: 2010-02-18 03:11:56 +0000 (Thu, 18 Feb 2010)
New Revision: 4738

Added:
   trunk/redmine/debian/doc/examples/apache2-passenger.conf
Modified:
   trunk/redmine/debian/changelog
   trunk/redmine/debian/control
Log:
Add apache2-mod-passenger as recommends alternative to fcgid + some example.

Modified: trunk/redmine/debian/changelog
===================================================================
--- trunk/redmine/debian/changelog	2010-02-17 00:52:06 UTC (rev 4737)
+++ trunk/redmine/debian/changelog	2010-02-18 03:11:56 UTC (rev 4738)
@@ -1,8 +1,10 @@
 redmine (0.9.2-3) UNRELEASED; urgency=low
 
   * NOT RELEASED YET
+  * Recommends libapache2-mod-passenger and provide some example for
+    its configuration (Closes: #570184).
 
- -- Lucas Nussbaum <lucas at lucas-nussbaum.net>  Sun, 14 Feb 2010 22:16:50 +0100
+ -- Jérémy Lal <kapouer at melix.org>  Thu, 18 Feb 2010 01:19:07 +0100
 
 redmine (0.9.2-2) unstable; urgency=low
 

Modified: trunk/redmine/debian/control
===================================================================
--- trunk/redmine/debian/control	2010-02-17 00:52:06 UTC (rev 4737)
+++ trunk/redmine/debian/control	2010-02-18 03:11:56 UTC (rev 4738)
@@ -14,7 +14,7 @@
 Architecture: all
 Pre-Depends: debconf
 Depends: ruby, ruby1.8 (>= 1.8.7), rake (>=0.8.3), rails (>= 2.2.3), rails (<< 2.3), libjs-prototype (>= 1.6.1), libjs-scriptaculous (>= 1.8.2), dbconfig-common, redmine-sqlite | redmine-mysql | redmine-pgsql, ${misc:Depends}
-Recommends: libfcgi-ruby, libapache2-mod-fcgid
+Recommends: libfcgi-ruby, libapache2-mod-passenger | libapache2-mod-fcgid
 Suggests: libsvn-ruby (>= 1.3), librmagick-ruby, libopenid-ruby, thin | mongrel | httpd-cgi
 Description: flexible project management web application
  Redmine is a flexible project management web application. Written using Ruby

Added: trunk/redmine/debian/doc/examples/apache2-passenger.conf
===================================================================
--- trunk/redmine/debian/doc/examples/apache2-passenger.conf	                        (rev 0)
+++ trunk/redmine/debian/doc/examples/apache2-passenger.conf	2010-02-18 03:11:56 UTC (rev 4738)
@@ -0,0 +1,13 @@
+# These modules must be enabled : passenger
+# Configuration for http://localhost/redmine
+<VirtualHost localhost>
+	# this is the passenger config
+	RailsEnv production
+	RailsBaseURI /redmine
+	SetEnv X_DEBIAN_SITEID "default"
+	DocumentRoot /usr/share/redmine/public
+	<Directory "/usr/share/redmine/public">
+		Order allow,deny
+		Allow from all
+	</Directory>
+</VirtualHost>




More information about the Pkg-ruby-extras-commits mailing list