Archive for Passenger

Phusion Passenger 2.0.1 (final) released

See http://blog.phusion.nl/2008/06/25/phusion-passenger-201-final-released/ for the announcement.

Comments (1)

Solaris support for Phusion Passenger

Harris Jacob has started working on Solaris support for Phusion Passenger, and he’s looking for testers. Please lend him a hand if you have a Solaris machine and would like to run Phusion Passenger in the future.

Comments

WSGI on Phusion Passenger

WSGI support is not documented in the Users guide because WSGI is mostly a proof of concept right now. But, just in case people want to tinker around with it, here’s how you can host a WSGI application on Phusion Passenger:

$ mkdir /webapps
$ mkdir /webapps/wsgi
$ cd /webapps/wsgi
$ mkdir public
$ mkdir tmp
$ some_favorite_editor passenger_wsgi.py
....edit file...
$ cat passenger_wsgi.py
def application(environ, start_response):
	start_response('200 OK', [('Content-type', 'text/plain'), ('X-Foo', 'bar')])
	return ['Hello World!<br><img src="http://www.squidz.com/c_snakey.jpg">']

Next, add a virtual host directive to your Apache config file:

<VirtualHost *:80>
    ServerName www.wsgi.test
    DocumentRoot /webapps/wsgi/public
</VirtualHost>

Comments (2)

Phusion Passenger™ 2.0 RC 1 and Ruby Enterprise Edition released

Phusion Passenger™ 2.0 RC 1 and Ruby Enterprise Edition have finally been released. See http://blog.phusion.nl/2008/06/09/phusion-passenger-20-rc-1-and-ruby-enterprise-edition-released/ for the announcement.

Comments

RailsConf 2008 was great

Hi guys.

RailsConf 2008 was great, and our talk on Phusion Passenger and Ruby Enterprise Edition went really well. Fabio Akita has some pictures of our talk. For other pictures, see Fabio’s .mac gallery!

We promised to release Passenger 2.0 and Ruby Enterprise Edition on the same day. Unfortunately we’ve been too optimistic about Internet access. We’re currently at the airport and we have limited internet access until we are back in the Netherlands (which should be in about 4 days or so), but in the meantime, the Passenger version with Rack and WSGI support has already been pushed to github, so feel free to tinker around with it. We’ve also put the latest Users Guide (with Rack support) online.
Thanks for the support Chad!

We’re trying our best to find a way to push out Ruby Enterprise Edition as well, and ask the hardcopy guys to not release it prior to the moment that we’re able to push it (which should be in about 4 days). This launch will also be accompanied by a site etc… Feel free to blog about it though, and the reason why we’re asking this is because we want to keep the support at Phusion related places. This will prevent any ‘noise’ in communication.

Thanks for the support mateys!

Cheers,
Hongli Lai
Tinco Andringa
Ninh Bui

Comments (1)

Ruby Enterprise Edition website “launched”

http://www.RubyEnterpriseEdition.com/ has been “launched”.

Next hint to be revealed on May 20, 2008.

Comments

Rails Escapes the Ghetto, Phusion Passenger now used on Dreamhost

Comments

Building native Linux packages for Passenger is now possible

We’ve made some modifications to Passenger to make Linux packagers’ lives a bit easier. Also, we’re looking for volunteers who wish to maintain packages for their distribution.

See http://blog.phusion.nl/2008/05/13/building-native-linux-packages-for-passenger-is-now-possible/ for details.

Comments