homebrew-core/Formula/nginx.rb

166 lines
5.1 KiB
Ruby
Raw Normal View History

2014-07-24 05:08:51 +00:00
require "formula"
2009-09-23 06:58:03 +00:00
class Nginx < Formula
2014-07-24 05:08:51 +00:00
homepage "http://nginx.org/"
2014-08-07 08:08:02 +00:00
url "http://nginx.org/download/nginx-1.6.1.tar.gz"
sha1 "e58c865f67b580541ed4eadf69d1676762bf50ab"
2013-05-07 20:06:37 +00:00
devel do
2014-08-07 08:08:02 +00:00
url "http://nginx.org/download/nginx-1.7.4.tar.gz"
sha1 "94f4ac8ddb4a05349e75c43b84f24dbacdbac6e9"
2013-05-07 20:06:37 +00:00
end
2014-07-24 05:08:51 +00:00
head "http://hg.nginx.org/nginx/", :using => :hg
2014-02-23 12:31:08 +00:00
bottle do
sha1 "29e8e4840f351ad8c1ee843a2840e214e7adcfab" => :mavericks
sha1 "8d07ca4ef27cd43da7ec7a81307ca447ba9d9474" => :mountain_lion
sha1 "160444c6304fbcb25bbed225c9e71890f54f2d15" => :lion
2014-02-23 12:31:08 +00:00
end
2012-09-14 16:07:47 +00:00
env :userpaths
2014-07-24 05:08:51 +00:00
option "with-passenger", "Compile with support for Phusion Passenger module"
option "with-webdav", "Compile with support for WebDAV module"
option "with-debug", "Compile with support for debug log"
option "with-spdy", "Compile with support for SPDY module"
option "with-gunzip", "Compile with support for gunzip module"
2014-07-24 05:08:51 +00:00
depends_on "pcre"
depends_on "passenger" => :optional
depends_on "openssl"
2013-06-11 14:46:24 +00:00
def passenger_config_args
passenger_config = "#{HOMEBREW_PREFIX}/opt/passenger/bin/passenger-config"
nginx_ext = `#{passenger_config} --nginx-addon-dir`.chomp
if File.directory?(nginx_ext)
return "--add-module=#{nginx_ext}"
end
puts "Unable to install nginx with passenger support."
exit
end
def install
# Changes default port to 8080
2014-07-24 05:08:51 +00:00
inreplace "conf/nginx.conf", "listen 80;", "listen 8080;"
2014-02-26 05:24:39 +00:00
pcre = Formula["pcre"]
openssl = Formula["openssl"]
cc_opt = "-I#{pcre.include} -I#{openssl.include}"
ld_opt = "-L#{pcre.lib} -L#{openssl.lib}"
args = ["--prefix=#{prefix}",
"--with-http_ssl_module",
"--with-pcre",
"--with-ipv6",
"--sbin-path=#{bin}/nginx",
"--with-cc-opt=#{cc_opt}",
"--with-ld-opt=#{ld_opt}",
"--conf-path=#{etc}/nginx/nginx.conf",
"--pid-path=#{var}/run/nginx.pid",
"--lock-path=#{var}/run/nginx.lock",
"--http-client-body-temp-path=#{var}/run/nginx/client_body_temp",
"--http-proxy-temp-path=#{var}/run/nginx/proxy_temp",
"--http-fastcgi-temp-path=#{var}/run/nginx/fastcgi_temp",
"--http-uwsgi-temp-path=#{var}/run/nginx/uwsgi_temp",
"--http-scgi-temp-path=#{var}/run/nginx/scgi_temp",
"--http-log-path=#{var}/log/nginx/access.log",
"--error-log-path=#{var}/log/nginx/error.log",
"--with-http_gzip_static_module"
]
args << passenger_config_args if build.with? "passenger"
args << "--with-http_dav_module" if build.with? "webdav"
args << "--with-debug" if build.with? "debug"
args << "--with-http_spdy_module" if build.with? "spdy"
args << "--with-http_gunzip_module" if build.with? "gunzip"
if build.head?
system "./auto/configure", *args
else
system "./configure", *args
end
system "make"
system "make install"
man8.install "objs/nginx.8"
2014-07-24 05:08:51 +00:00
(var/"run/nginx").mkpath
end
def post_install
# nginx's docroot is #{prefix}/html, this isn't useful, so we symlink it
# to #{HOMEBREW_PREFIX}/var/www. The reason we symlink instead of patching
# is so the user can redirect it easily to something else if they choose.
html = prefix/"html"
dst = var/"www"
if dst.exist?
html.rmtree
dst.mkpath
else
dst.dirname.mkpath
html.rename(dst)
end
prefix.install_symlink dst => "html"
# for most of this formula's life the binary has been placed in sbin
# and Homebrew used to suggest the user copy the plist for nginx to their
# ~/Library/LaunchAgents directory. So we need to have a symlink there
# for such cases
if rack.subdirs.any? { |d| d.join("sbin").directory? }
sbin.install_symlink bin/"nginx"
end
end
2013-09-12 16:31:40 +00:00
test do
2014-07-24 05:08:51 +00:00
system "#{bin}/nginx", "-t"
2013-09-12 16:31:40 +00:00
end
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
EOS
end
def caveats
s = <<-EOS.undent
Docroot is: #{HOMEBREW_PREFIX}/var/www
2013-09-12 16:35:02 +00:00
The default port has been set in #{HOMEBREW_PREFIX}/etc/nginx/nginx.conf to 8080 so that
nginx can run without sudo.
2011-06-05 20:32:01 +00:00
EOS
2014-07-24 05:08:51 +00:00
s << passenger_caveats if build.with? "passenger"
s
end
2014-07-24 05:08:51 +00:00
plist_options :manual => "nginx"
2013-09-12 16:35:02 +00:00
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<false/>
<key>ProgramArguments</key>
<array>
2014-03-06 05:28:31 +00:00
<string>#{opt_bin}/nginx</string>
<string>-g</string>
<string>daemon off;</string>
</array>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
</dict>
</plist>
EOS
end
end