aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/nginx.rb
diff options
context:
space:
mode:
authorBas Hintemann2014-09-25 16:28:19 +0200
committerAdam Vandenberg2014-09-25 07:33:10 -0700
commit9c878d0804f01d0aa34f7619b4658769b0dd9de5 (patch)
tree1d086648485ac342dc522f30a1cef64d0006722c /Library/Formula/nginx.rb
parent9e92f7ea0301a69ff415b614846b2505edb3542e (diff)
downloadhomebrew-9c878d0804f01d0aa34f7619b4658769b0dd9de5.tar.bz2
nginx: fix passenger caveat
Nitpick, but caused some confusion for me: semicolons were missing. Those are needed for the directions to be valid nginx config options. Closes #32636. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/nginx.rb')
-rw-r--r--Library/Formula/nginx.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/nginx.rb b/Library/Formula/nginx.rb
index b3ed2727a..31b34d892 100644
--- a/Library/Formula/nginx.rb
+++ b/Library/Formula/nginx.rb
@@ -126,8 +126,8 @@ class Nginx < Formula
def passenger_caveats; <<-EOS.undent
To activate Phusion Passenger, add this to #{etc}/nginx/nginx.conf, inside the 'http' context:
- passenger_root #{HOMEBREW_PREFIX}/opt/passenger/libexec/lib/phusion_passenger/locations.ini
- passenger_ruby /usr/bin/ruby
+ passenger_root #{HOMEBREW_PREFIX}/opt/passenger/libexec/lib/phusion_passenger/locations.ini;
+ passenger_ruby /usr/bin/ruby;
EOS
end