Browse Source

explain where to find more info about the rails and passenger_apache2 LWRP's used in the example

Wes Morgan 11 years ago
parent
commit
5845183aab
1 changed files with 5 additions and 2 deletions
  1. 5 2
      README.md

+ 5 - 2
README.md

@@ -135,12 +135,15 @@ A recipe using this LWRP may look like this:
       repository "http://git.example.com/my-app.git"
       revision "production"
 
+      # Apply the rails LWRP from application_ruby
       rails do
-        # Rails-specific configuration
+        # Rails-specific configuration. See the README in the
+        # application_ruby cookbook for more information.
       end
 
+      # Apply the passenger_apache2 LWRP, also from application_ruby
       passenger_apache2 do
-        # Passenger-specific configuration
+        # Passenger-specific configuration.
       end
     end