This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
nginx.rb
151 lines (125 loc) · 4.86 KB
/
nginx.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
require 'formula'
class NginxPushStreamModule < Formula
homepage 'http://github.com/wandenberg/nginx-push-stream-module'
url 'git://github.com/wandenberg/nginx-push-stream-module.git', :using => :git
def initialize; super 'NginxPushStreamModule'; end
end
class NginxHttpAuthRequestModule < Formula
homepage 'http://mdounin.ru/hg/ngx_http_auth_request_module'
url 'http://mdounin.ru/hg/ngx_http_auth_request_module', :using => :hg
def initialize; super 'NginxHttpAuthRequestModule'; end
end
class Nginx < Formula
homepage 'http://nginx.org/'
url 'http://nginx.org/download/nginx-1.2.7.tar.gz'
sha1 '65309abde9d683ece737da7a354c8fae24e15ecb'
devel do
url 'http://nginx.org/download/nginx-1.3.13.tar.gz'
sha1 'b09b1c35b2b741292d41db1caa3b8a4123805a4c'
end
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-debug', 'Compile with support for debug log'
option 'with-push-stream', 'Compile with support for Push Stream module'
option 'with-http-auth-request', 'Compile with support for HTTP Auth Request module'
skip_clean 'logs'
# Changes default port to 8080
def patches
DATA
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 push_stream_args
NginxPushStreamModule.new.brew { (buildpath + 'nginx-push-stream-module').install Dir['*'] }
"--add-module=nginx-push-stream-module"
end
def http_auth_request_args
NginxHttpAuthRequestModule.new.brew { (buildpath + 'nginx-http-auth-request-module').install Dir['*'] }
"--add-module=nginx-http-auth-request-module"
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'
args << "--with-debug" if build.include? 'with-debug'
args << push_stream_args if build.include? 'with-push-stream'
args << http_auth_request_args if build.include? 'with-http-auth-request'
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 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>UserName</key>
<string>#{`whoami`.chomp}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_prefix}/sbin/nginx</string>
<string>-g</string>
<string>daemon off;</string>
</array>
<key>WorkingDirectory</key>
<string>#{HOMEBREW_PREFIX}</string>
</dict>
</plist>
EOS
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;