Created
October 23, 2012 19:53
-
-
Save phillmv/3941146 to your computer and use it in GitHub Desktop.
brew for the upload module, mostly from https://gist.github.com/1859950
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
# should prob use http://stackoverflow.com/questions/10665072/homebrew-formula-download-two-url-packages | |
class Nginx < Formula | |
homepage 'http://nginx.org/' | |
url 'http://nginx.org/download/nginx-1.2.4.tar.gz' | |
sha1 'e3de0b2b82095f26e96bdb461ba36472d3e7cdda' | |
devel do | |
url 'http://nginx.org/download/nginx-1.3.7.tar.gz' | |
sha1 'd2925986fc184e0947b87e845db283967d2615cc' | |
end | |
UPLOAD_MODULE_VERSION='2.2.0' | |
UPLOAD_PROGRESS_VERSION='v0.8.4' | |
env :userpaths | |
depends_on 'pcre' | |
option 'with-passenger', 'Compile with support for Phusion Passenger module' | |
option 'with-webdav', 'Compile with support for WebDAV module' | |
option 'with-upload-module', "Compile with support for upload module." | |
skip_clean 'logs' | |
# Changes default port to 8080 | |
def patches | |
DATA | |
end | |
def download_upload_module_conf | |
`curl http://www.grid.net.ru/nginx/download/nginx_upload_module-#{UPLOAD_MODULE_VERSION}.tar.gz | tar -xzf -` | |
`curl -L https://github.com/masterzen/nginx-upload-progress-module/tarball/v0.8.4 | tar -xzf - && mv masterzen-* masterzen-nginx-upload-progress-module-#{UPLOAD_PROGRESS_VERSION}` | |
end | |
def passenger_config_args | |
passenger_root = `passenger-config --root`.chomp | |
if File.directory?(passenger_root) | |
return "--add-module=#{passenger_root}/ext/nginx" | |
end | |
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 | |
end | |
def install | |
args = ["--prefix=#{prefix}", | |
"--with-http_ssl_module", | |
"--with-pcre", | |
"--with-ipv6", | |
"--with-cc-opt=-I#{HOMEBREW_PREFIX}/include", | |
"--with-ld-opt=-L#{HOMEBREW_PREFIX}/lib", | |
"--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"] | |
args << passenger_config_args if build.include? 'with-passenger' | |
args << "--with-http_dav_module" if build.include? 'with-webdav' | |
if build.include? 'with-upload-module' | |
download_upload_module_conf | |
args << "--add-module=nginx_upload_module-#{UPLOAD_MODULE_VERSION}" | |
args << "--add-module=masterzen-nginx-upload-progress-module-#{UPLOAD_PROGRESS_VERSION}" | |
end | |
system "./configure", *args | |
system "make" | |
system "make install" | |
man8.install "objs/nginx.8" | |
(var/'run/nginx').mkpath | |
end | |
def caveats; <<-EOS.undent | |
In the interest of allowing you to run `nginx` without `sudo`, the default | |
port is set to localhost:8080. | |
If you want to host pages on your local machine to the public, you should | |
change that to localhost:80, and run `sudo nginx`. You'll need to turn off | |
any other web servers running port 80, of course. | |
You can start nginx automatically on login running as your user with: | |
mkdir -p ~/Library/LaunchAgents | |
cp #{plist_path} ~/Library/LaunchAgents/ | |
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename} | |
Though note that if running as your user, the launch agent will fail if you | |
try to use a port below 1024 (such as http's default of 80.) | |
EOS | |
end | |
def startup_plist | |
return <<-EOPLIST | |
<?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>UserName</key> | |
<string>#{`whoami`.chomp}</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>#{HOMEBREW_PREFIX}/sbin/nginx</string> | |
</array> | |
<key>WorkingDirectory</key> | |
<string>#{HOMEBREW_PREFIX}</string> | |
</dict> | |
</plist> | |
EOPLIST | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment