This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Hongli Lai (Phusion) (author)
Wed Apr 02 03:43:50 -0700 2008
commit a2d694020d18952f5a6586a49f23fa8bdda9e9fe
tree 2a01c466eb1bf39ef71e452533984585d88d1a65
parent cd086d6a21cf7f5f89ec82a5fb137dbdad960699
tree 2a01c466eb1bf39ef71e452533984585d88d1a65
parent cd086d6a21cf7f5f89ec82a5fb137dbdad960699
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Nov 15 03:34:59 -0800 2008 | [Hongli Lai (Phusion)] |
| |
DEVELOPERS.TXT | Sun Jun 22 05:13:21 -0700 2008 | [Hongli Lai (Phusion)] |
| |
LICENSE | Wed Jul 09 02:59:09 -0700 2008 | [Hongli Lai (Phusion)] |
| |
README | Fri Jun 13 23:12:14 -0700 2008 | [Hongli Lai (Phusion)] |
| |
Rakefile | Thu Nov 20 02:35:15 -0800 2008 | [Hongli Lai (Phusion)] |
| |
benchmark/ | Mon Aug 18 04:46:38 -0700 2008 | [Hongli Lai (Phusion)] |
| |
bin/ | Thu Nov 20 09:08:17 -0800 2008 | [Hongli Lai (Phusion)] |
| |
doc/ | Thu Nov 20 05:07:03 -0800 2008 | [Hongli Lai (Phusion)] |
| |
ext/ | Fri Nov 21 11:27:04 -0800 2008 | [Hongli Lai (Phusion)] |
| |
lib/ | Sat Nov 22 04:02:13 -0800 2008 | [Hongli Lai (Phusion)] |
| |
misc/ | Mon May 19 03:34:40 -0700 2008 | [Hongli Lai (Phusion)] |
| |
test/ | Thu Nov 20 14:05:47 -0800 2008 | [Hongli Lai (Phusion)] |
README
== Introduction
Passenger is an Apache module, which makes deploying Ruby on Rails applications
on Apache a breeze. It follows the usual Ruby on Rails conventions, such as
"Don't-Repeat-Yourself" and ease of setup. Passenger's key goals are:
[ Ease of use (for the developer) ]
Deploying a Rails application is as easy as uploading the files to the web
server. The applications should _Just Work(tm)_ without any further manual
configurations.
[ Ease of installation ]
It is possible to install Passenger in less than 3 minutes, with minimal
reading of documentation. The system administrator should not have to edit
30 configuration files to get Passenger working.
[ Stability ]
We strive for the highest level of stability. Passenger should never crash,
and should never leave Apache into an unusable state which requires a
restart.
[ Zero maintenance ]
Software that is the easiest to maintain is software that doesn't have to be
maintained. Just like a (train) passenger, who can step into a train and
enjoy the trip, Passenger strives to allow the developer and system
administrator to sit back, enjoy, and relax.
* Ruby on Rails applications are started and stopped automatically based on
site traffic. There should be no need to think about application server
management.
* Passenger makes no use of temporary files or sockets, so even after a hard
system crash, the administrator does not have to manually clean up stale
files. *
<em>* This is only possible on Linux. On systems such as BSD, Passenger
falls back to using temporary Unix sockets.</em>
* If Passenger encounters an error, and it knows that it can be automatically
recovered, then Passenger will do that. The administrator should not have
to run server monitoring software to monitor Rails applications. Rails
applications that crash are automatically restarted.
[ Security ]
We take security very seriously. We review our code for security issues to
the best of our ability. Design- and implementation issues that have security
implications are carefully documented, making it possible for third parties to
review Passenger's security, in the true spirit in Open Source.
A key security feature of Passenger is the ability to run different Ruby on
Rails applications under different users, in an efficient manner. This is
perfect for shared hosts. And in the line of ease of installation, this can
be done automatically without any further need for configuration.
[ Performance ]
Performance is an important issue, so we strive for the highest possible
performance. We use the performance of Mongrel, a popular Ruby on Rails
application server, as our performance base line. We carefully consider every
aspect of Passenger, and under no circumstances must Passenger perform
significantly worse than Mongrel.
[ Efficient resource usage ]
Unlike other Ruby on Rails deployment systems, Passenger makes efficient use
of memory when possible. Passenger allows different Ruby on Rails
applications to share memory with each other, resulting in as much of 30%
memory saving on average. *
<em>* This requires additional software. Please read the users guide for
information. Please visit our website for technical details and
measurements.</em>
[ Well-documented ]
We know that documentation is of great importance to everybody. We put a
great deal of effort into documenting Passenger, for system administrators
who use Passenger, as well as developers who want to contribute to Passenger.
== Welcome, beta tester
Since Passenger hasn't been released yet, if you're reading this, then you must
be a beta tester. :) We only ask of you not to give out this software to
others. Even though it's going to be open source, we want the first release to
leave a good - no, GREAT - impression. Leaking an unfinished beta will likely
spoil peoples' first impression. Thank you for your understanding.
We're pretty confident that the current version is pretty stable: we have lots
of tests, and we've even tested the insertion of random errors, and so far we
haven't been able to make it crash. But we're not done yet, and there is a lot
more to test before we're confident enough that it can be released to the
public.
== Installation
Run the following script as root:
./bin/passenger-install-apache2-module
That's it. :) For troubleshooting, configuration and tips, please read the
file 'doc/Users guide.html'.





