class Nginx < Formula desc "HTTP(S) server and reverse proxy, and IMAP/POP3 proxy server" homepage "http://nginx.org/" url "http://nginx.org/download/nginx-1.8.1.tar.gz" sha256 "8f4b3c630966c044ec72715754334d1fdf741caa1d5795fb4646c27d09f797b7" head "http://hg.nginx.org/nginx/", :using => :hg bottle do sha256 "17714df889eb930a3255c27ac98e229c85ccc2e356dc54e3993d2e3caf515ae7" => :el_capitan sha256 "14e9c80ef124435810403e0265bccb2a31e84da8581fb157878ab876ef7fcfa1" => :yosemite sha256 "e2996cbd212024a4d4a7a3eef2ba5bf381c978372937d757da70245abb9d814a" => :mavericks end devel do url "http://nginx.org/download/nginx-1.9.11.tar.gz" sha256 "6a5c72f4afaf57a6db064bba0965d72335f127481c5d4e64ee8714e7b368a51f" end env :userpaths # Before submitting more options to this formula please check they aren't # already in Homebrew/homebrew-nginx/nginx-full: # https://github.com/Homebrew/homebrew-nginx/blob/master/Formula/nginx-full.rb 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 either SPDY or HTTP/2 module" option "with-gunzip", "Compile with support for gunzip module" depends_on "pcre" depends_on "passenger" => :optional depends_on "openssl" => :recommended depends_on "libressl" => :optional def install # Changes default port to 8080 inreplace "conf/nginx.conf", "listen 80;", "listen 8080;" inreplace "conf/nginx.conf", " #}\n\n}", " #}\n include servers/*;\n}" pcre = Formula["pcre"] openssl = Formula["openssl"] libressl = Formula["libressl"] if build.with? "libressl" cc_opt = "-I#{pcre.include} -I#{libressl.include}" ld_opt = "-L#{pcre.lib} -L#{libressl.lib}" else cc_opt = "-I#{pcre.include} -I#{openssl.include}" ld_opt = "-L#{pcre.lib} -L#{openssl.lib}" end args = %W[ --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 ] if build.with? "passenger" nginx_ext = `#{Formula["passenger"].opt_bin}/passenger-config --nginx-addon-dir`.chomp args << "--add-module=#{nginx_ext}" end args << "--with-http_dav_module" if build.with? "webdav" args << "--with-debug" if build.with? "debug" args << "--with-http_gunzip_module" if build.with? "gunzip" # This became "with-http_v2_module" in 1.9.5 # http://nginx.org/en/docs/http/ngx_http_spdy_module.html # We handle devel/stable block variable options badly, so this installs # the expected module rather than fatally bailing out of configure. # The option should be deprecated to the new name when stable. if build.devel? || build.head? && build.with?("spdy") args << "--with-http_v2_module" elsif build.with?("spdy") args << "--with-http_spdy_module" end if build.head? system "./auto/configure", *args else system "./configure", *args end system "make", "install" if build.head? man8.install "docs/man/nginx.8" else man8.install "man/nginx.8" end (etc/"nginx/servers").mkpath (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 def passenger_caveats; <<-EOS.undent To activate Phusion Passenger, add this to #{etc}/nginx/nginx.conf, inside the 'http' context: passenger_root #{Formula["passenger"].opt_libexec}/src/ruby_supportlib/phusion_passenger/locations.ini; passenger_ruby /usr/bin/ruby; EOS end def caveats s = <<-EOS.undent Docroot is: #{var}/www The default port has been set in #{etc}/nginx/nginx.conf to 8080 so that nginx can run without sudo. nginx will load all files in #{etc}/nginx/servers/. EOS s << "\n" << passenger_caveats if build.with? "passenger" s end plist_options :manual => "nginx" def plist; <<-EOS.undent Label #{plist_name} RunAtLoad KeepAlive ProgramArguments #{opt_bin}/nginx -g daemon off; WorkingDirectory #{HOMEBREW_PREFIX} EOS end test do (testpath/"nginx.conf").write <<-EOS worker_processes 4; error_log #{testpath}/error.log; pid #{testpath}/nginx.pid; events { worker_connections 1024; } http { client_body_temp_path #{testpath}/client_body_temp; fastcgi_temp_path #{testpath}/fastcgi_temp; proxy_temp_path #{testpath}/proxy_temp; scgi_temp_path #{testpath}/scgi_temp; uwsgi_temp_path #{testpath}/uwsgi_temp; server { listen 8080; root #{testpath}; access_log #{testpath}/access.log; error_log #{testpath}/error.log; } } EOS system "#{bin}/nginx", "-t", "-c", testpath/"nginx.conf" end end