2009-10-15 08:07:12 +00:00
|
|
|
|
require 'formula'
|
2009-09-01 20:23:31 +00:00
|
|
|
|
|
2009-09-23 06:58:03 +00:00
|
|
|
|
class Nginx < Formula
|
2010-04-30 15:57:12 +00:00
|
|
|
|
homepage 'http://nginx.org/'
|
2013-07-17 13:53:29 +00:00
|
|
|
|
url 'http://nginx.org/download/nginx-1.4.2.tar.gz'
|
|
|
|
|
sha1 '8f006dc773840b6624a137a584ff8850d5155e3f'
|
2012-05-16 10:28:43 +00:00
|
|
|
|
|
2013-05-07 20:06:37 +00:00
|
|
|
|
devel do
|
2013-08-01 10:23:58 +00:00
|
|
|
|
url 'http://nginx.org/download/nginx-1.5.3.tar.gz'
|
|
|
|
|
sha1 '88f4548e46c25d32f08681c0aba39b86b84ec3a3'
|
2013-05-07 20:06:37 +00:00
|
|
|
|
end
|
|
|
|
|
|
2013-05-31 14:46:05 +00:00
|
|
|
|
head 'http://hg.nginx.org/nginx/', :using => :hg
|
2013-04-18 09:18:18 +00:00
|
|
|
|
|
2012-09-14 16:07:47 +00:00
|
|
|
|
env :userpaths
|
|
|
|
|
|
2012-08-13 21:04:47 +00:00
|
|
|
|
option 'with-passenger', 'Compile with support for Phusion Passenger module'
|
|
|
|
|
option 'with-webdav', 'Compile with support for WebDAV module'
|
2012-12-17 15:10:56 +00:00
|
|
|
|
option 'with-debug', 'Compile with support for debug log'
|
2013-04-24 16:47:46 +00:00
|
|
|
|
option 'with-spdy', 'Compile with support for SPDY module'
|
|
|
|
|
option 'with-gunzip', 'Compile with support for gunzip module'
|
2013-03-26 16:12:17 +00:00
|
|
|
|
|
2013-06-11 14:46:24 +00:00
|
|
|
|
depends_on 'pcre'
|
2013-07-21 21:27:54 +00:00
|
|
|
|
depends_on 'passenger' => :optional
|
2013-06-11 14:46:24 +00:00
|
|
|
|
# SPDY needs openssl >= 1.0.1 for NPN; see:
|
|
|
|
|
# https://tools.ietf.org/agenda/82/slides/tls-3.pdf
|
|
|
|
|
# http://www.openssl.org/news/changelog.html
|
|
|
|
|
depends_on 'openssl' if build.with? 'spdy'
|
|
|
|
|
|
2010-02-01 18:48:01 +00:00
|
|
|
|
skip_clean 'logs'
|
2009-10-03 09:00:44 +00:00
|
|
|
|
|
2011-06-05 20:32:01 +00:00
|
|
|
|
# Changes default port to 8080
|
2009-10-03 09:00:44 +00:00
|
|
|
|
def patches
|
|
|
|
|
DATA
|
|
|
|
|
end
|
|
|
|
|
|
2010-02-01 18:48:01 +00:00
|
|
|
|
def passenger_config_args
|
2012-09-29 12:41:21 +00:00
|
|
|
|
passenger_root = `passenger-config --root`.chomp
|
2010-06-22 21:27:22 +00:00
|
|
|
|
|
2012-09-29 12:41:21 +00:00
|
|
|
|
if File.directory?(passenger_root)
|
|
|
|
|
return "--add-module=#{passenger_root}/ext/nginx"
|
|
|
|
|
end
|
2010-06-22 21:27:22 +00:00
|
|
|
|
|
2012-09-29 12:41:21 +00:00
|
|
|
|
puts "Unable to install nginx with passenger support. The passenger"
|
|
|
|
|
puts "gem must be installed and passenger-config must be in your path"
|
|
|
|
|
puts "in order to continue."
|
|
|
|
|
exit
|
2010-02-01 18:48:01 +00:00
|
|
|
|
end
|
2010-06-22 21:27:22 +00:00
|
|
|
|
|
2009-09-01 20:23:31 +00:00
|
|
|
|
def install
|
2013-06-11 09:26:16 +00:00
|
|
|
|
cc_opt = "-I#{HOMEBREW_PREFIX}/include"
|
|
|
|
|
ld_opt = "-L#{HOMEBREW_PREFIX}/lib"
|
|
|
|
|
|
|
|
|
|
if build.with? 'spdy'
|
|
|
|
|
openssl_path = Formula.factory("openssl").opt_prefix
|
|
|
|
|
cc_opt += " -I#{openssl_path}/include"
|
|
|
|
|
ld_opt += " -L#{openssl_path}/lib"
|
|
|
|
|
end
|
|
|
|
|
|
2011-03-27 21:18:36 +00:00
|
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
|
"--with-http_ssl_module",
|
|
|
|
|
"--with-pcre",
|
2012-06-22 10:59:36 +00:00
|
|
|
|
"--with-ipv6",
|
2013-04-11 16:38:16 +00:00
|
|
|
|
"--sbin-path=#{bin}/nginx",
|
2013-06-11 09:26:16 +00:00
|
|
|
|
"--with-cc-opt=#{cc_opt}",
|
|
|
|
|
"--with-ld-opt=#{ld_opt}",
|
2011-03-27 21:18:36 +00:00
|
|
|
|
"--conf-path=#{etc}/nginx/nginx.conf",
|
|
|
|
|
"--pid-path=#{var}/run/nginx.pid",
|
2012-09-29 12:41:21 +00:00
|
|
|
|
"--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",
|
2013-04-11 16:38:16 +00:00
|
|
|
|
"--http-scgi-temp-path=#{var}/run/nginx/scgi_temp",
|
2013-07-19 01:07:32 +00:00
|
|
|
|
"--http-log-path=#{var}/log/nginx/access.log",
|
|
|
|
|
"--error-log-path=#{var}/log/nginx/error.log",
|
2013-04-12 21:14:18 +00:00
|
|
|
|
"--with-http_gzip_static_module"
|
2013-04-11 16:38:16 +00:00
|
|
|
|
]
|
2011-03-27 21:18:36 +00:00
|
|
|
|
|
2012-08-13 21:04:47 +00:00
|
|
|
|
args << passenger_config_args if build.include? 'with-passenger'
|
|
|
|
|
args << "--with-http_dav_module" if build.include? 'with-webdav'
|
2012-12-17 15:10:56 +00:00
|
|
|
|
args << "--with-debug" if build.include? 'with-debug'
|
2013-04-24 16:47:46 +00:00
|
|
|
|
args << "--with-http_spdy_module" if build.include? 'with-spdy'
|
|
|
|
|
args << "--with-http_gunzip_module" if build.include? 'with-gunzip'
|
2013-03-26 16:12:17 +00:00
|
|
|
|
|
2013-04-18 09:18:18 +00:00
|
|
|
|
if build.head?
|
|
|
|
|
system "./auto/configure", *args
|
|
|
|
|
else
|
|
|
|
|
system "./configure", *args
|
|
|
|
|
end
|
2011-10-11 17:40:40 +00:00
|
|
|
|
system "make"
|
2009-09-01 20:23:31 +00:00
|
|
|
|
system "make install"
|
2011-10-11 17:40:40 +00:00
|
|
|
|
man8.install "objs/nginx.8"
|
2012-09-29 12:41:21 +00:00
|
|
|
|
(var/'run/nginx').mkpath
|
2013-04-11 16:38:16 +00:00
|
|
|
|
|
2013-04-12 21:41:12 +00:00
|
|
|
|
# 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.
|
2013-04-11 16:38:16 +00:00
|
|
|
|
prefix.cd do
|
|
|
|
|
dst = HOMEBREW_PREFIX/"var/www"
|
|
|
|
|
if not dst.exist?
|
2013-04-12 21:08:26 +00:00
|
|
|
|
dst.dirname.mkpath
|
2013-04-11 16:38:16 +00:00
|
|
|
|
mv "html", dst
|
|
|
|
|
else
|
|
|
|
|
rm_rf "html"
|
|
|
|
|
dst.mkpath
|
|
|
|
|
end
|
|
|
|
|
Pathname.new("#{prefix}/html").make_relative_symlink(dst)
|
|
|
|
|
end
|
2013-04-12 21:41:12 +00:00
|
|
|
|
|
|
|
|
|
# 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 (HOMEBREW_CELLAR/'nginx').subdirs.any?{|d| (d/:sbin).directory? }
|
|
|
|
|
sbin.mkpath
|
|
|
|
|
sbin.cd do
|
|
|
|
|
(sbin/'nginx').make_relative_symlink(bin/'nginx')
|
|
|
|
|
end
|
|
|
|
|
end
|
2009-12-14 06:16:24 +00:00
|
|
|
|
end
|
2010-06-22 21:27:22 +00:00
|
|
|
|
|
2013-06-20 12:57:46 +00:00
|
|
|
|
def passenger_caveats; <<-EOS.undent
|
|
|
|
|
|
|
|
|
|
To activate Phusion Passenger, add this to #{etc}/nginx/nginx.conf:
|
|
|
|
|
passenger_root #{HOMEBREW_PREFIX}/opt/passenger
|
|
|
|
|
passenger_ruby /usr/bin/ruby
|
|
|
|
|
EOS
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
|
s = <<-EOS.undent
|
2013-04-11 16:38:16 +00:00
|
|
|
|
Docroot is: #{HOMEBREW_PREFIX}/var/www
|
2010-02-01 18:48:01 +00:00
|
|
|
|
|
2013-04-11 16:38:16 +00:00
|
|
|
|
The default port has been set to 8080 so that nginx can run without sudo.
|
2010-09-01 21:07:45 +00:00
|
|
|
|
|
2013-04-11 16:38:16 +00:00
|
|
|
|
If you want to host pages on your local machine to the wider network you
|
|
|
|
|
can change the port to 80 in: #{HOMEBREW_PREFIX}/etc/nginx/nginx.conf
|
2010-09-01 21:07:45 +00:00
|
|
|
|
|
2013-04-11 16:38:16 +00:00
|
|
|
|
You will then need to run nginx as root: `sudo nginx`.
|
2011-06-05 20:32:01 +00:00
|
|
|
|
EOS
|
2013-06-20 12:57:46 +00:00
|
|
|
|
s << passenger_caveats if build.include? 'with-passenger'
|
|
|
|
|
s
|
2009-12-14 06:16:24 +00:00
|
|
|
|
end
|
2010-09-01 21:07:45 +00:00
|
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
|
def plist; <<-EOS.undent
|
2012-11-22 21:53:12 +00:00
|
|
|
|
<?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>
|
2013-04-12 21:08:26 +00:00
|
|
|
|
<string>#{opt_prefix}/bin/nginx</string>
|
2012-11-22 21:53:12 +00:00
|
|
|
|
<string>-g</string>
|
|
|
|
|
<string>daemon off;</string>
|
|
|
|
|
</array>
|
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
|
|
|
</dict>
|
|
|
|
|
</plist>
|
|
|
|
|
EOS
|
2010-09-01 21:07:45 +00:00
|
|
|
|
end
|
2009-09-01 20:23:31 +00:00
|
|
|
|
end
|
2009-10-03 09:00:44 +00:00
|
|
|
|
|
|
|
|
|
__END__
|
2009-12-14 06:16:24 +00:00
|
|
|
|
--- a/conf/nginx.conf
|
|
|
|
|
+++ b/conf/nginx.conf
|
|
|
|
|
@@ -33,7 +33,7 @@
|
|
|
|
|
#gzip on;
|
2010-06-22 21:27:22 +00:00
|
|
|
|
|
2009-12-14 06:16:24 +00:00
|
|
|
|
server {
|
|
|
|
|
- listen 80;
|
|
|
|
|
+ listen 8080;
|
|
|
|
|
server_name localhost;
|
2010-06-22 21:27:22 +00:00
|
|
|
|
|
2009-12-14 06:16:24 +00:00
|
|
|
|
#charset koi8-r;
|