Merge what I've done over the weekend
[catagits/Catalyst-Runtime.git] / lib / Catalyst / PSGI.pod
index 771c14e..1aec1f8 100644 (file)
@@ -1,6 +1,10 @@
 =pod
 
-=head1 Catalyst and PSGI
+=head1 NAME
+
+Catalyst::PSGI - How Catalyst and PSGI work together
+
+=head1 SYNOPSIS
 
 Catalyst used to contain a whole set of C<< Catalyst::Engine::XXXX >> classes to
 adapt to various different web servers, and environments (e.g. CGI, FastCGI, mod_perl)
@@ -60,7 +64,7 @@ engine specific fixes for uniform behaviour, as contained in:
 
 =item L<Plack::Middleware::IIS6ScriptNameFix>
 
-=item nginx - FIXME??
+=item nginx - local to Catalyst
 
 =back
 
@@ -70,7 +74,9 @@ application returned when you call C<< MyApp->psgi_app >>, and if you need
 any of this functionality, you'll need to implement this in your C<< .psgi >>
 file yourself.
 
-XXX FIXME - Add details about how to get 'standard' wrapping done if you want it.
+An apply_default_middlewares method is supplied to wrap your application
+in the default middlewares if you want this behaviour and you are providing
+your own .psgi file.
 
 =head1 SEE ALSO