Skip to content

Instantly share code, notes, and snippets.

@colevscode
Created June 30, 2012 00:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save colevscode/3021545 to your computer and use it in GitHub Desktop.
Save colevscode/3021545 to your computer and use it in GitHub Desktop.
Homebrew formula for nginx with upload
require 'formula'
class Nginx < Formula
url 'http://nginx.org/download/nginx-1.2.1.tar.gz'
head 'http://nginx.org/download/nginx-1.3.2.tar.gz'
homepage 'http://nginx.org/'
if ARGV.include? '--HEAD'
@md5='7a4f8e26b76bf9f24f884317f5614338'
else
@md5='ceacae12d66d1f021bf3737a0269b6f4'
end
depends_on 'pcre'
skip_clean 'logs'
# Changes default port to 8080
def patches
DATA
end
def options
[
['--with-passenger', "Compile with support for Phusion Passenger module"],
['--with-webdav', "Compile with support for WebDAV module"],
['--with-upload-module', "Compile with upload module by Valery Kholodkov"]
]
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-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}/nginx/nginx.lock"]
args << passenger_config_args if ARGV.include? '--with-passenger'
args << "--with-http_dav_module" if ARGV.include? '--with-webdav'
if ARGV.include? '--with-upload-module'
prepare_nginx_upload_module
args << "--add-module=./#{nginx_upload_module_dirname}"
end
system "./configure", *args
system "make"
system "make install"
man8.install "objs/nginx.8"
plist_path.write startup_plist
plist_path.chmod 0644
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
protected
def prepare_nginx_upload_module
ohai "Downloading #{nginx_upload_module_url}"
curl "-O", nginx_upload_module_url
ohai "Extracting #{nginx_upload_module_filename}"
safe_system "/usr/bin/tar", "-zxvf", nginx_upload_module_filename
end
def nginx_upload_module_url
"http://www.grid.net.ru/nginx/download/nginx_upload_module-2.2.0.tar.gz"
end
def nginx_upload_module_filename
@nginx_upload_module_filename ||= nginx_upload_module_url.split('/').last
end
def nginx_upload_module_dirname
nginx_upload_module_filename.sub(".tar.gz", "")
end
end
__END__
--- a/conf/nginx.conf
+++ b/conf/nginx.conf
@@ -33,7 +33,7 @@
#gzip on;
server {
- listen 80;
+ listen 8080;
server_name localhost;
#charset koi8-r;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment