pkgsrc-wip/ap2-passenger/patches/patch-ab
Filip Hajny 4b8e43166e Updated wip/ap2-passenger to 3.0.0.
No changelog provided for 3.0.0, links to the official blog:

http://blog.phusion.nl/2010/10/18/phusion-passenger-3-0-0-final-released/

Some improvements and features claimed:

* Improved performance and stability.
* Passenger Lite: embedded Nginx based server.
* Asynchronous spawning.
* Ability to configure minimum number of processes.
* Smart spawning support for all Rack applications.
* Ability to access individual application processes over HTTP.
* Global queuing now on by default.
* Ability to disable friendly error pages.
* Nginx-specific improvements.
* Support for multiple concurrent Ruby versions.

pkgsrc changes:

* Re-implemented the Rake task in a cleaned way, mirroring the default
  'fakeroot' behavior more closely. This should make the pkgsrc port
  look more like what the developers intended.
* Man pages supplied are also installed now.
2010-11-30 11:53:29 +00:00

14 lines
498 B
Text

$NetBSD: patch-ab,v 1.2 2010/11/30 11:53:29 fhajny Exp $
Fix paths.
--- ext/apache2/Configuration.hpp.orig 2010-10-10 18:52:03.000000000 +0000
+++ ext/apache2/Configuration.hpp
@@ -432,7 +432,7 @@ struct ServerConfig {
}
if (analyticsLogDir.empty() && geteuid() == 0) {
- analyticsLogDir = "/var/log/passenger-analytics";
+ analyticsLogDir = "@PASSENGER_LOGDIR@/analytics";
} else if (analyticsLogDir.empty()) {
struct passwd *user = getpwuid(geteuid());
string username;