nginxtra 1.2.3.4 → 1.2.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/nginxtra +2 -2
- data/bin/nginxtra_rails +2 -2
- data/lib/nginxtra/actions/rails/server.rb +49 -1
- data/lib/nginxtra/cli.rb +11 -0
- data/lib/nginxtra/config.rb +5 -6
- data/lib/nginxtra/rails/cli.rb +13 -0
- data/lib/nginxtra/version.rb +1 -1
- data/templates/partials/nginx.conf/rails.rb +18 -1
- metadata +318 -318
data/bin/nginxtra
CHANGED
data/bin/nginxtra_rails
CHANGED
|
@@ -9,9 +9,11 @@ module Nginxtra
|
|
|
9
9
|
ensure_server_gem_installed
|
|
10
10
|
|
|
11
11
|
begin
|
|
12
|
+
start_verbose_output
|
|
12
13
|
start_nginxtra
|
|
13
14
|
wait_till_finished
|
|
14
15
|
ensure
|
|
16
|
+
stop_verbose_output
|
|
15
17
|
stop_nginxtra
|
|
16
18
|
end
|
|
17
19
|
end
|
|
@@ -30,14 +32,16 @@ module Nginxtra
|
|
|
30
32
|
|
|
31
33
|
def start_nginxtra
|
|
32
34
|
port = @thor.options["port"]
|
|
35
|
+
environment = @thor.options["environment"]
|
|
33
36
|
@thor.empty_directory "tmp" unless File.directory? "tmp"
|
|
34
37
|
@thor.empty_directory "tmp/nginxtra" unless File.directory? "tmp/nginxtra"
|
|
35
38
|
@thor.create_file config_path, %{nginxtra.simple_config do
|
|
36
|
-
rails :port => #{port}
|
|
39
|
+
rails :port => #{port}, :environment => "#{environment}"
|
|
37
40
|
end
|
|
38
41
|
}, :force => true
|
|
39
42
|
@thor.invoke Nginxtra::CLI, ["start"], :basedir => basedir, :config => config_path, :workingdir => workingdir, :"non-interactive" => true
|
|
40
43
|
@thor.say "Listening on http://localhost:#{port}/"
|
|
44
|
+
@thor.say "Environment: #{environment}"
|
|
41
45
|
end
|
|
42
46
|
|
|
43
47
|
def wait_till_finished
|
|
@@ -72,6 +76,50 @@ end
|
|
|
72
76
|
return true if File.exists? "script/rails"
|
|
73
77
|
File.exists?("script/server") && File.exists?("app")
|
|
74
78
|
end
|
|
79
|
+
|
|
80
|
+
def start_verbose_output
|
|
81
|
+
return unless @thor.options["verbose"]
|
|
82
|
+
@verbose_run = true
|
|
83
|
+
Thread.new { verbose_thread }
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
def stop_verbose_output
|
|
87
|
+
return unless @thor.options["verbose"]
|
|
88
|
+
@verbose_run = false
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
def verbose_thread
|
|
92
|
+
environment = @thor.options["environment"]
|
|
93
|
+
log_path = "log/#{environment}.log"
|
|
94
|
+
|
|
95
|
+
if File.exists? log_path
|
|
96
|
+
log = File.open log_path, "r"
|
|
97
|
+
log.seek 0, IO::SEEK_END
|
|
98
|
+
else
|
|
99
|
+
while @verbose_run
|
|
100
|
+
if File.exists? log_path
|
|
101
|
+
log = File.open log_path, "r"
|
|
102
|
+
break
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
sleep 0.1
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
while @verbose_run
|
|
110
|
+
select [log]
|
|
111
|
+
line = log.gets
|
|
112
|
+
|
|
113
|
+
if line
|
|
114
|
+
puts line
|
|
115
|
+
puts line while(line = log.gets)
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
sleep 0.1
|
|
119
|
+
end
|
|
120
|
+
ensure
|
|
121
|
+
log.close if log
|
|
122
|
+
end
|
|
75
123
|
end
|
|
76
124
|
end
|
|
77
125
|
end
|
data/lib/nginxtra/cli.rb
CHANGED
|
@@ -12,6 +12,8 @@ module Nginxtra
|
|
|
12
12
|
class_option "basedir", :type => :string, :banner => "Specify the directory to store nginx files", :aliases => "-b"
|
|
13
13
|
class_option "workingdir", :type => :string, :banner => "Specify the working directory", :aliases => "-w"
|
|
14
14
|
|
|
15
|
+
map "-v" => "version"
|
|
16
|
+
|
|
15
17
|
desc "convert", "Convert an nginx.conf file to an nginxtra.conf.rb"
|
|
16
18
|
long_desc "
|
|
17
19
|
Parse nginx.conf and convert it to an equivalent nginxtra.conf.rb file. Expects
|
|
@@ -114,6 +116,15 @@ module Nginxtra
|
|
|
114
116
|
end
|
|
115
117
|
end
|
|
116
118
|
|
|
119
|
+
desc "version", "Show the nginxtra version"
|
|
120
|
+
long_desc "
|
|
121
|
+
This can be optionally used as 'nginxtra -v'"
|
|
122
|
+
def version
|
|
123
|
+
Nginxtra::Error.protect self do
|
|
124
|
+
say Nginxtra::Version
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
117
128
|
private
|
|
118
129
|
def prepare_config!
|
|
119
130
|
Nginxtra::Config.base_dir = options["basedir"]
|
data/lib/nginxtra/config.rb
CHANGED
|
@@ -48,11 +48,10 @@ module Nginxtra
|
|
|
48
48
|
@requires_root
|
|
49
49
|
end
|
|
50
50
|
|
|
51
|
-
# Require passenger. This will include
|
|
52
|
-
#
|
|
53
|
-
#
|
|
51
|
+
# Require passenger. This will include http_gzip_static_module,
|
|
52
|
+
# add a Wno-error compilation option, and add the passenger module
|
|
53
|
+
# to the proper passenger path.
|
|
54
54
|
def require_passenger!
|
|
55
|
-
compile_option %{--with-http_ssl_module}
|
|
56
55
|
compile_option %{--with-http_gzip_static_module}
|
|
57
56
|
compile_option %{--with-cc-opt=-Wno-error}
|
|
58
57
|
compile_option %{--add-module="#{File.join Nginxtra::Config.passenger_spec.gem_dir, "ext/nginx"}"}
|
|
@@ -447,9 +446,9 @@ module Nginxtra
|
|
|
447
446
|
partial_options = args.first if args.length > 0 && args.first.kind_of?(Hash)
|
|
448
447
|
|
|
449
448
|
if File.exists? override_partial_path
|
|
450
|
-
process_template! override_partial_path, partial_options
|
|
449
|
+
process_template! override_partial_path, partial_options, block
|
|
451
450
|
elsif File.exists? partial_path
|
|
452
|
-
process_template! partial_path, partial_options
|
|
451
|
+
process_template! partial_path, partial_options, block
|
|
453
452
|
end
|
|
454
453
|
end
|
|
455
454
|
end
|
data/lib/nginxtra/rails/cli.rb
CHANGED
|
@@ -7,14 +7,27 @@ module Nginxtra
|
|
|
7
7
|
|
|
8
8
|
class_option "trace", :type => :boolean, :banner => "Output stack traces on error"
|
|
9
9
|
|
|
10
|
+
map "-v" => "version"
|
|
11
|
+
|
|
10
12
|
desc "server", "Start rails using nginxtra"
|
|
11
13
|
method_option "port", :type => :numeric, :banner => "Specify the port to use to run the server on", :aliases => "-p", :default => 3000
|
|
14
|
+
method_option "environment", :banner => "Specify the rails environment to run the server with", :aliases => "-e", :default => "development"
|
|
15
|
+
method_option "verbose", :type => :boolean, :banner => "Attempts to output the log while the server is running", :aliases => "-V"
|
|
12
16
|
def server
|
|
13
17
|
Nginxtra::Error.protect self do
|
|
14
18
|
Nginxtra::Actions::Rails::Server.new(self, nil).server
|
|
15
19
|
end
|
|
16
20
|
end
|
|
17
21
|
|
|
22
|
+
desc "version", "Show the nginxtra version"
|
|
23
|
+
long_desc "
|
|
24
|
+
This can be optionally used as 'nginxtra -v'"
|
|
25
|
+
def version
|
|
26
|
+
Nginxtra::Error.protect self do
|
|
27
|
+
say Nginxtra::Version
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
|
|
18
31
|
default_task :server
|
|
19
32
|
end
|
|
20
33
|
end
|
data/lib/nginxtra/version.rb
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
rails_server = yield(:server) || :passenger
|
|
2
|
+
ssl_details = yield :ssl
|
|
3
|
+
|
|
4
|
+
if ssl_details
|
|
5
|
+
default_port = 443
|
|
6
|
+
else
|
|
7
|
+
default_port = 80
|
|
8
|
+
end
|
|
2
9
|
|
|
3
10
|
if rails_server == :passenger && !@passenger_requirements_done
|
|
4
11
|
@config.require_passenger!
|
|
@@ -8,9 +15,19 @@ if rails_server == :passenger && !@passenger_requirements_done
|
|
|
8
15
|
end
|
|
9
16
|
|
|
10
17
|
server do
|
|
11
|
-
listen(yield(:port) ||
|
|
18
|
+
listen(yield(:port) || default_port)
|
|
12
19
|
server_name(yield(:server_name) || "localhost")
|
|
13
20
|
root File.join(File.absolute_path(File.expand_path(yield(:root) || ".")), "public")
|
|
14
21
|
gzip_static "on"
|
|
15
22
|
passenger_on! if rails_server == :passenger
|
|
23
|
+
rails_env(yield(:environment) || "production")
|
|
24
|
+
|
|
25
|
+
if ssl_details
|
|
26
|
+
ssl "on"
|
|
27
|
+
ssl_certificate ssl_details[:ssl_cert]
|
|
28
|
+
ssl_certificate_key ssl_details[:ssl_key]
|
|
29
|
+
@config.compile_option "--with-http_ssl_module"
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
yield
|
|
16
33
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nginxtra
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.3.
|
|
4
|
+
version: 1.2.3.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,19 +9,19 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-08-
|
|
12
|
+
date: 2012-08-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: thor
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &7830800 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 0.
|
|
21
|
+
version: 0.16.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *7830800
|
|
25
25
|
description: This gem is intended to provide an easy to use configuration file that
|
|
26
26
|
will automatically be used to compile nginx and configure the configuration.
|
|
27
27
|
email: reasonnumber@gmail.com
|
|
@@ -31,382 +31,382 @@ executables:
|
|
|
31
31
|
extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
|
-
- bin/nginxtra
|
|
35
34
|
- bin/nginxtra_rails
|
|
35
|
+
- bin/nginxtra
|
|
36
36
|
- lib/nginxtra.rb
|
|
37
|
+
- lib/nginxtra/config_converter.rb
|
|
37
38
|
- lib/nginxtra/action.rb
|
|
39
|
+
- lib/nginxtra/actions/reload.rb
|
|
40
|
+
- lib/nginxtra/actions/restart.rb
|
|
38
41
|
- lib/nginxtra/actions/compile.rb
|
|
39
42
|
- lib/nginxtra/actions/convert.rb
|
|
40
43
|
- lib/nginxtra/actions/install.rb
|
|
41
|
-
- lib/nginxtra/actions/rails/server.rb
|
|
42
|
-
- lib/nginxtra/actions/reload.rb
|
|
43
|
-
- lib/nginxtra/actions/restart.rb
|
|
44
|
-
- lib/nginxtra/actions/start.rb
|
|
45
44
|
- lib/nginxtra/actions/status.rb
|
|
45
|
+
- lib/nginxtra/actions/start.rb
|
|
46
46
|
- lib/nginxtra/actions/stop.rb
|
|
47
|
-
- lib/nginxtra/
|
|
47
|
+
- lib/nginxtra/actions/rails/server.rb
|
|
48
48
|
- lib/nginxtra/config.rb
|
|
49
|
-
- lib/nginxtra/config_converter.rb
|
|
50
49
|
- lib/nginxtra/error.rb
|
|
51
|
-
- lib/nginxtra/
|
|
50
|
+
- lib/nginxtra/cli.rb
|
|
52
51
|
- lib/nginxtra/status.rb
|
|
53
52
|
- lib/nginxtra/version.rb
|
|
53
|
+
- lib/nginxtra/rails/cli.rb
|
|
54
54
|
- templates/files/nginx.conf.rb
|
|
55
55
|
- templates/partials/nginx.conf/rails.rb
|
|
56
|
-
- templates/partials/nginx.conf/static.rb
|
|
57
56
|
- templates/partials/nginx.conf/wordpress.rb
|
|
58
|
-
-
|
|
57
|
+
- templates/partials/nginx.conf/static.rb
|
|
59
58
|
- vendor/nginx/CHANGES.ru
|
|
60
59
|
- vendor/nginx/LICENSE
|
|
61
|
-
- vendor/nginx/
|
|
62
|
-
- vendor/nginx/
|
|
63
|
-
- vendor/nginx/
|
|
64
|
-
- vendor/nginx/
|
|
65
|
-
- vendor/nginx/auto/cc/clang
|
|
66
|
-
- vendor/nginx/auto/cc/conf
|
|
67
|
-
- vendor/nginx/auto/cc/gcc
|
|
68
|
-
- vendor/nginx/auto/cc/icc
|
|
69
|
-
- vendor/nginx/auto/cc/msvc
|
|
70
|
-
- vendor/nginx/auto/cc/name
|
|
71
|
-
- vendor/nginx/auto/cc/owc
|
|
72
|
-
- vendor/nginx/auto/cc/sunc
|
|
73
|
-
- vendor/nginx/auto/define
|
|
74
|
-
- vendor/nginx/auto/endianness
|
|
75
|
-
- vendor/nginx/auto/feature
|
|
76
|
-
- vendor/nginx/auto/have
|
|
77
|
-
- vendor/nginx/auto/have_headers
|
|
78
|
-
- vendor/nginx/auto/headers
|
|
79
|
-
- vendor/nginx/auto/include
|
|
80
|
-
- vendor/nginx/auto/init
|
|
81
|
-
- vendor/nginx/auto/install
|
|
82
|
-
- vendor/nginx/auto/lib/conf
|
|
83
|
-
- vendor/nginx/auto/lib/geoip/conf
|
|
84
|
-
- vendor/nginx/auto/lib/google-perftools/conf
|
|
85
|
-
- vendor/nginx/auto/lib/libatomic/conf
|
|
86
|
-
- vendor/nginx/auto/lib/libatomic/make
|
|
87
|
-
- vendor/nginx/auto/lib/libgd/conf
|
|
88
|
-
- vendor/nginx/auto/lib/libxslt/conf
|
|
89
|
-
- vendor/nginx/auto/lib/make
|
|
90
|
-
- vendor/nginx/auto/lib/md5/conf
|
|
91
|
-
- vendor/nginx/auto/lib/md5/make
|
|
92
|
-
- vendor/nginx/auto/lib/md5/makefile.bcc
|
|
93
|
-
- vendor/nginx/auto/lib/md5/makefile.msvc
|
|
94
|
-
- vendor/nginx/auto/lib/md5/makefile.owc
|
|
95
|
-
- vendor/nginx/auto/lib/openssl/conf
|
|
96
|
-
- vendor/nginx/auto/lib/openssl/make
|
|
97
|
-
- vendor/nginx/auto/lib/openssl/makefile.bcc
|
|
98
|
-
- vendor/nginx/auto/lib/openssl/makefile.msvc
|
|
99
|
-
- vendor/nginx/auto/lib/pcre/conf
|
|
100
|
-
- vendor/nginx/auto/lib/pcre/make
|
|
101
|
-
- vendor/nginx/auto/lib/pcre/makefile.bcc
|
|
102
|
-
- vendor/nginx/auto/lib/pcre/makefile.msvc
|
|
103
|
-
- vendor/nginx/auto/lib/pcre/makefile.owc
|
|
104
|
-
- vendor/nginx/auto/lib/perl/conf
|
|
105
|
-
- vendor/nginx/auto/lib/perl/make
|
|
106
|
-
- vendor/nginx/auto/lib/sha1/conf
|
|
107
|
-
- vendor/nginx/auto/lib/sha1/make
|
|
108
|
-
- vendor/nginx/auto/lib/sha1/makefile.bcc
|
|
109
|
-
- vendor/nginx/auto/lib/sha1/makefile.msvc
|
|
110
|
-
- vendor/nginx/auto/lib/sha1/makefile.owc
|
|
111
|
-
- vendor/nginx/auto/lib/test
|
|
112
|
-
- vendor/nginx/auto/lib/zlib/conf
|
|
113
|
-
- vendor/nginx/auto/lib/zlib/make
|
|
114
|
-
- vendor/nginx/auto/lib/zlib/makefile.bcc
|
|
115
|
-
- vendor/nginx/auto/lib/zlib/makefile.msvc
|
|
116
|
-
- vendor/nginx/auto/lib/zlib/makefile.owc
|
|
117
|
-
- vendor/nginx/auto/lib/zlib/patch.zlib.h
|
|
118
|
-
- vendor/nginx/auto/make
|
|
119
|
-
- vendor/nginx/auto/modules
|
|
120
|
-
- vendor/nginx/auto/nohave
|
|
121
|
-
- vendor/nginx/auto/options
|
|
122
|
-
- vendor/nginx/auto/os/conf
|
|
123
|
-
- vendor/nginx/auto/os/darwin
|
|
124
|
-
- vendor/nginx/auto/os/freebsd
|
|
125
|
-
- vendor/nginx/auto/os/linux
|
|
126
|
-
- vendor/nginx/auto/os/solaris
|
|
127
|
-
- vendor/nginx/auto/os/win32
|
|
128
|
-
- vendor/nginx/auto/sources
|
|
129
|
-
- vendor/nginx/auto/stubs
|
|
130
|
-
- vendor/nginx/auto/summary
|
|
131
|
-
- vendor/nginx/auto/types/sizeof
|
|
132
|
-
- vendor/nginx/auto/types/typedef
|
|
133
|
-
- vendor/nginx/auto/types/uintptr_t
|
|
134
|
-
- vendor/nginx/auto/types/value
|
|
135
|
-
- vendor/nginx/auto/unix
|
|
60
|
+
- vendor/nginx/conf/koi-win
|
|
61
|
+
- vendor/nginx/conf/win-utf
|
|
62
|
+
- vendor/nginx/conf/koi-utf
|
|
63
|
+
- vendor/nginx/conf/scgi_params
|
|
136
64
|
- vendor/nginx/conf/fastcgi.conf
|
|
137
65
|
- vendor/nginx/conf/fastcgi_params
|
|
138
|
-
- vendor/nginx/conf/
|
|
139
|
-
- vendor/nginx/conf/koi-win
|
|
66
|
+
- vendor/nginx/conf/uwsgi_params
|
|
140
67
|
- vendor/nginx/conf/mime.types
|
|
141
68
|
- vendor/nginx/conf/nginx.conf
|
|
142
|
-
- vendor/nginx/conf/scgi_params
|
|
143
|
-
- vendor/nginx/conf/uwsgi_params
|
|
144
|
-
- vendor/nginx/conf/win-utf
|
|
145
69
|
- vendor/nginx/configure
|
|
146
|
-
- vendor/nginx/
|
|
147
|
-
- vendor/nginx/
|
|
148
|
-
- vendor/nginx/
|
|
149
|
-
- vendor/nginx/
|
|
150
|
-
- vendor/nginx/
|
|
151
|
-
- vendor/nginx/
|
|
152
|
-
- vendor/nginx/
|
|
153
|
-
- vendor/nginx/
|
|
154
|
-
- vendor/nginx/src/
|
|
155
|
-
- vendor/nginx/src/
|
|
156
|
-
- vendor/nginx/src/
|
|
157
|
-
- vendor/nginx/src/
|
|
158
|
-
- vendor/nginx/src/
|
|
159
|
-
- vendor/nginx/src/
|
|
160
|
-
- vendor/nginx/src/
|
|
161
|
-
- vendor/nginx/src/
|
|
162
|
-
- vendor/nginx/src/
|
|
163
|
-
- vendor/nginx/src/core/ngx_connection.c
|
|
164
|
-
- vendor/nginx/src/core/ngx_connection.h
|
|
165
|
-
- vendor/nginx/src/core/ngx_core.h
|
|
166
|
-
- vendor/nginx/src/core/ngx_cpuinfo.c
|
|
167
|
-
- vendor/nginx/src/core/ngx_crc.h
|
|
168
|
-
- vendor/nginx/src/core/ngx_crc32.c
|
|
169
|
-
- vendor/nginx/src/core/ngx_crc32.h
|
|
170
|
-
- vendor/nginx/src/core/ngx_crypt.c
|
|
171
|
-
- vendor/nginx/src/core/ngx_crypt.h
|
|
172
|
-
- vendor/nginx/src/core/ngx_cycle.c
|
|
173
|
-
- vendor/nginx/src/core/ngx_cycle.h
|
|
174
|
-
- vendor/nginx/src/core/ngx_file.c
|
|
175
|
-
- vendor/nginx/src/core/ngx_file.h
|
|
176
|
-
- vendor/nginx/src/core/ngx_hash.c
|
|
177
|
-
- vendor/nginx/src/core/ngx_hash.h
|
|
178
|
-
- vendor/nginx/src/core/ngx_inet.c
|
|
179
|
-
- vendor/nginx/src/core/ngx_inet.h
|
|
180
|
-
- vendor/nginx/src/core/ngx_list.c
|
|
181
|
-
- vendor/nginx/src/core/ngx_list.h
|
|
182
|
-
- vendor/nginx/src/core/ngx_log.c
|
|
183
|
-
- vendor/nginx/src/core/ngx_log.h
|
|
184
|
-
- vendor/nginx/src/core/ngx_md5.c
|
|
185
|
-
- vendor/nginx/src/core/ngx_md5.h
|
|
186
|
-
- vendor/nginx/src/core/ngx_murmurhash.c
|
|
187
|
-
- vendor/nginx/src/core/ngx_murmurhash.h
|
|
188
|
-
- vendor/nginx/src/core/ngx_open_file_cache.c
|
|
189
|
-
- vendor/nginx/src/core/ngx_open_file_cache.h
|
|
190
|
-
- vendor/nginx/src/core/ngx_output_chain.c
|
|
191
|
-
- vendor/nginx/src/core/ngx_palloc.c
|
|
192
|
-
- vendor/nginx/src/core/ngx_palloc.h
|
|
193
|
-
- vendor/nginx/src/core/ngx_parse.c
|
|
194
|
-
- vendor/nginx/src/core/ngx_parse.h
|
|
195
|
-
- vendor/nginx/src/core/ngx_queue.c
|
|
196
|
-
- vendor/nginx/src/core/ngx_queue.h
|
|
197
|
-
- vendor/nginx/src/core/ngx_radix_tree.c
|
|
198
|
-
- vendor/nginx/src/core/ngx_radix_tree.h
|
|
199
|
-
- vendor/nginx/src/core/ngx_rbtree.c
|
|
200
|
-
- vendor/nginx/src/core/ngx_rbtree.h
|
|
201
|
-
- vendor/nginx/src/core/ngx_regex.c
|
|
202
|
-
- vendor/nginx/src/core/ngx_regex.h
|
|
203
|
-
- vendor/nginx/src/core/ngx_resolver.c
|
|
204
|
-
- vendor/nginx/src/core/ngx_resolver.h
|
|
205
|
-
- vendor/nginx/src/core/ngx_sha1.h
|
|
206
|
-
- vendor/nginx/src/core/ngx_shmtx.c
|
|
207
|
-
- vendor/nginx/src/core/ngx_shmtx.h
|
|
208
|
-
- vendor/nginx/src/core/ngx_slab.c
|
|
209
|
-
- vendor/nginx/src/core/ngx_slab.h
|
|
210
|
-
- vendor/nginx/src/core/ngx_spinlock.c
|
|
211
|
-
- vendor/nginx/src/core/ngx_string.c
|
|
212
|
-
- vendor/nginx/src/core/ngx_string.h
|
|
213
|
-
- vendor/nginx/src/core/ngx_times.c
|
|
214
|
-
- vendor/nginx/src/core/ngx_times.h
|
|
215
|
-
- vendor/nginx/src/event/modules/ngx_aio_module.c
|
|
216
|
-
- vendor/nginx/src/event/modules/ngx_devpoll_module.c
|
|
217
|
-
- vendor/nginx/src/event/modules/ngx_epoll_module.c
|
|
218
|
-
- vendor/nginx/src/event/modules/ngx_eventport_module.c
|
|
219
|
-
- vendor/nginx/src/event/modules/ngx_kqueue_module.c
|
|
220
|
-
- vendor/nginx/src/event/modules/ngx_poll_module.c
|
|
221
|
-
- vendor/nginx/src/event/modules/ngx_rtsig_module.c
|
|
222
|
-
- vendor/nginx/src/event/modules/ngx_select_module.c
|
|
223
|
-
- vendor/nginx/src/event/modules/ngx_win32_select_module.c
|
|
224
|
-
- vendor/nginx/src/event/ngx_event.c
|
|
225
|
-
- vendor/nginx/src/event/ngx_event.h
|
|
226
|
-
- vendor/nginx/src/event/ngx_event_accept.c
|
|
227
|
-
- vendor/nginx/src/event/ngx_event_busy_lock.c
|
|
228
|
-
- vendor/nginx/src/event/ngx_event_busy_lock.h
|
|
229
|
-
- vendor/nginx/src/event/ngx_event_connect.c
|
|
230
|
-
- vendor/nginx/src/event/ngx_event_connect.h
|
|
231
|
-
- vendor/nginx/src/event/ngx_event_mutex.c
|
|
232
|
-
- vendor/nginx/src/event/ngx_event_openssl.c
|
|
233
|
-
- vendor/nginx/src/event/ngx_event_openssl.h
|
|
234
|
-
- vendor/nginx/src/event/ngx_event_pipe.c
|
|
235
|
-
- vendor/nginx/src/event/ngx_event_pipe.h
|
|
236
|
-
- vendor/nginx/src/event/ngx_event_posted.c
|
|
237
|
-
- vendor/nginx/src/event/ngx_event_posted.h
|
|
238
|
-
- vendor/nginx/src/event/ngx_event_timer.c
|
|
239
|
-
- vendor/nginx/src/event/ngx_event_timer.h
|
|
240
|
-
- vendor/nginx/src/http/modules/ngx_http_access_module.c
|
|
241
|
-
- vendor/nginx/src/http/modules/ngx_http_addition_filter_module.c
|
|
242
|
-
- vendor/nginx/src/http/modules/ngx_http_auth_basic_module.c
|
|
243
|
-
- vendor/nginx/src/http/modules/ngx_http_autoindex_module.c
|
|
70
|
+
- vendor/nginx/src/http/ngx_http_cache.h
|
|
71
|
+
- vendor/nginx/src/http/ngx_http_core_module.c
|
|
72
|
+
- vendor/nginx/src/http/ngx_http_upstream_round_robin.c
|
|
73
|
+
- vendor/nginx/src/http/ngx_http_file_cache.c
|
|
74
|
+
- vendor/nginx/src/http/ngx_http_request.c
|
|
75
|
+
- vendor/nginx/src/http/ngx_http_write_filter_module.c
|
|
76
|
+
- vendor/nginx/src/http/ngx_http.c
|
|
77
|
+
- vendor/nginx/src/http/ngx_http_config.h
|
|
78
|
+
- vendor/nginx/src/http/ngx_http_upstream.h
|
|
79
|
+
- vendor/nginx/src/http/ngx_http_parse.c
|
|
80
|
+
- vendor/nginx/src/http/ngx_http_variables.h
|
|
81
|
+
- vendor/nginx/src/http/ngx_http_upstream.c
|
|
82
|
+
- vendor/nginx/src/http/ngx_http_core_module.h
|
|
83
|
+
- vendor/nginx/src/http/ngx_http_script.c
|
|
84
|
+
- vendor/nginx/src/http/modules/ngx_http_realip_module.c
|
|
85
|
+
- vendor/nginx/src/http/modules/ngx_http_ssl_module.h
|
|
86
|
+
- vendor/nginx/src/http/modules/ngx_http_headers_filter_module.c
|
|
244
87
|
- vendor/nginx/src/http/modules/ngx_http_browser_module.c
|
|
245
|
-
- vendor/nginx/src/http/modules/
|
|
246
|
-
- vendor/nginx/src/http/modules/ngx_http_chunked_filter_module.c
|
|
247
|
-
- vendor/nginx/src/http/modules/ngx_http_dav_module.c
|
|
248
|
-
- vendor/nginx/src/http/modules/ngx_http_degradation_module.c
|
|
249
|
-
- vendor/nginx/src/http/modules/ngx_http_empty_gif_module.c
|
|
250
|
-
- vendor/nginx/src/http/modules/ngx_http_fastcgi_module.c
|
|
251
|
-
- vendor/nginx/src/http/modules/ngx_http_flv_module.c
|
|
252
|
-
- vendor/nginx/src/http/modules/ngx_http_geo_module.c
|
|
88
|
+
- vendor/nginx/src/http/modules/ngx_http_upstream_ip_hash_module.c
|
|
253
89
|
- vendor/nginx/src/http/modules/ngx_http_geoip_module.c
|
|
90
|
+
- vendor/nginx/src/http/modules/ngx_http_limit_conn_module.c
|
|
91
|
+
- vendor/nginx/src/http/modules/ngx_http_ssl_module.c
|
|
92
|
+
- vendor/nginx/src/http/modules/ngx_http_addition_filter_module.c
|
|
254
93
|
- vendor/nginx/src/http/modules/ngx_http_gzip_filter_module.c
|
|
255
|
-
- vendor/nginx/src/http/modules/ngx_http_gzip_static_module.c
|
|
256
|
-
- vendor/nginx/src/http/modules/ngx_http_headers_filter_module.c
|
|
257
94
|
- vendor/nginx/src/http/modules/ngx_http_image_filter_module.c
|
|
258
|
-
- vendor/nginx/src/http/modules/ngx_http_index_module.c
|
|
259
|
-
- vendor/nginx/src/http/modules/ngx_http_limit_conn_module.c
|
|
260
|
-
- vendor/nginx/src/http/modules/ngx_http_limit_req_module.c
|
|
261
|
-
- vendor/nginx/src/http/modules/ngx_http_log_module.c
|
|
262
|
-
- vendor/nginx/src/http/modules/ngx_http_map_module.c
|
|
263
95
|
- vendor/nginx/src/http/modules/ngx_http_memcached_module.c
|
|
96
|
+
- vendor/nginx/src/http/modules/ngx_http_fastcgi_module.c
|
|
264
97
|
- vendor/nginx/src/http/modules/ngx_http_mp4_module.c
|
|
98
|
+
- vendor/nginx/src/http/modules/ngx_http_split_clients_module.c
|
|
99
|
+
- vendor/nginx/src/http/modules/ngx_http_index_module.c
|
|
265
100
|
- vendor/nginx/src/http/modules/ngx_http_not_modified_filter_module.c
|
|
266
|
-
- vendor/nginx/src/http/modules/
|
|
101
|
+
- vendor/nginx/src/http/modules/ngx_http_degradation_module.c
|
|
267
102
|
- vendor/nginx/src/http/modules/ngx_http_random_index_module.c
|
|
268
|
-
- vendor/nginx/src/http/modules/
|
|
269
|
-
- vendor/nginx/src/http/modules/
|
|
270
|
-
- vendor/nginx/src/http/modules/
|
|
103
|
+
- vendor/nginx/src/http/modules/ngx_http_gzip_static_module.c
|
|
104
|
+
- vendor/nginx/src/http/modules/ngx_http_chunked_filter_module.c
|
|
105
|
+
- vendor/nginx/src/http/modules/perl/typemap
|
|
106
|
+
- vendor/nginx/src/http/modules/perl/Makefile.PL
|
|
107
|
+
- vendor/nginx/src/http/modules/perl/nginx.xs
|
|
108
|
+
- vendor/nginx/src/http/modules/perl/ngx_http_perl_module.c
|
|
109
|
+
- vendor/nginx/src/http/modules/perl/ngx_http_perl_module.h
|
|
110
|
+
- vendor/nginx/src/http/modules/perl/nginx.pm
|
|
111
|
+
- vendor/nginx/src/http/modules/ngx_http_dav_module.c
|
|
271
112
|
- vendor/nginx/src/http/modules/ngx_http_rewrite_module.c
|
|
272
113
|
- vendor/nginx/src/http/modules/ngx_http_scgi_module.c
|
|
273
|
-
- vendor/nginx/src/http/modules/ngx_http_secure_link_module.c
|
|
274
|
-
- vendor/nginx/src/http/modules/ngx_http_split_clients_module.c
|
|
275
|
-
- vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.c
|
|
276
|
-
- vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.h
|
|
277
|
-
- vendor/nginx/src/http/modules/ngx_http_ssl_module.c
|
|
278
|
-
- vendor/nginx/src/http/modules/ngx_http_ssl_module.h
|
|
279
|
-
- vendor/nginx/src/http/modules/ngx_http_static_module.c
|
|
280
|
-
- vendor/nginx/src/http/modules/ngx_http_stub_status_module.c
|
|
281
114
|
- vendor/nginx/src/http/modules/ngx_http_sub_filter_module.c
|
|
282
|
-
- vendor/nginx/src/http/modules/
|
|
115
|
+
- vendor/nginx/src/http/modules/ngx_http_charset_filter_module.c
|
|
116
|
+
- vendor/nginx/src/http/modules/ngx_http_empty_gif_module.c
|
|
117
|
+
- vendor/nginx/src/http/modules/ngx_http_auth_basic_module.c
|
|
118
|
+
- vendor/nginx/src/http/modules/ngx_http_log_module.c
|
|
119
|
+
- vendor/nginx/src/http/modules/ngx_http_proxy_module.c
|
|
120
|
+
- vendor/nginx/src/http/modules/ngx_http_xslt_filter_module.c
|
|
121
|
+
- vendor/nginx/src/http/modules/ngx_http_uwsgi_module.c
|
|
122
|
+
- vendor/nginx/src/http/modules/ngx_http_stub_status_module.c
|
|
123
|
+
- vendor/nginx/src/http/modules/ngx_http_access_module.c
|
|
124
|
+
- vendor/nginx/src/http/modules/ngx_http_static_module.c
|
|
125
|
+
- vendor/nginx/src/http/modules/ngx_http_secure_link_module.c
|
|
126
|
+
- vendor/nginx/src/http/modules/ngx_http_autoindex_module.c
|
|
283
127
|
- vendor/nginx/src/http/modules/ngx_http_upstream_keepalive_module.c
|
|
284
|
-
- vendor/nginx/src/http/modules/
|
|
128
|
+
- vendor/nginx/src/http/modules/ngx_http_flv_module.c
|
|
129
|
+
- vendor/nginx/src/http/modules/ngx_http_range_filter_module.c
|
|
130
|
+
- vendor/nginx/src/http/modules/ngx_http_referer_module.c
|
|
131
|
+
- vendor/nginx/src/http/modules/ngx_http_geo_module.c
|
|
132
|
+
- vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.h
|
|
285
133
|
- vendor/nginx/src/http/modules/ngx_http_userid_filter_module.c
|
|
286
|
-
- vendor/nginx/src/http/modules/
|
|
287
|
-
- vendor/nginx/src/http/modules/
|
|
288
|
-
- vendor/nginx/src/http/modules/
|
|
289
|
-
- vendor/nginx/src/http/modules/
|
|
290
|
-
- vendor/nginx/src/http/modules/perl/nginx.xs
|
|
291
|
-
- vendor/nginx/src/http/modules/perl/ngx_http_perl_module.c
|
|
292
|
-
- vendor/nginx/src/http/modules/perl/ngx_http_perl_module.h
|
|
293
|
-
- vendor/nginx/src/http/modules/perl/typemap
|
|
294
|
-
- vendor/nginx/src/http/ngx_http.c
|
|
295
|
-
- vendor/nginx/src/http/ngx_http.h
|
|
296
|
-
- vendor/nginx/src/http/ngx_http_busy_lock.c
|
|
297
|
-
- vendor/nginx/src/http/ngx_http_busy_lock.h
|
|
298
|
-
- vendor/nginx/src/http/ngx_http_cache.h
|
|
299
|
-
- vendor/nginx/src/http/ngx_http_config.h
|
|
134
|
+
- vendor/nginx/src/http/modules/ngx_http_upstream_least_conn_module.c
|
|
135
|
+
- vendor/nginx/src/http/modules/ngx_http_map_module.c
|
|
136
|
+
- vendor/nginx/src/http/modules/ngx_http_ssi_filter_module.c
|
|
137
|
+
- vendor/nginx/src/http/modules/ngx_http_limit_req_module.c
|
|
300
138
|
- vendor/nginx/src/http/ngx_http_copy_filter_module.c
|
|
301
|
-
- vendor/nginx/src/http/
|
|
302
|
-
- vendor/nginx/src/http/ngx_http_core_module.h
|
|
303
|
-
- vendor/nginx/src/http/ngx_http_file_cache.c
|
|
304
|
-
- vendor/nginx/src/http/ngx_http_header_filter_module.c
|
|
305
|
-
- vendor/nginx/src/http/ngx_http_parse.c
|
|
139
|
+
- vendor/nginx/src/http/ngx_http_variables.c
|
|
306
140
|
- vendor/nginx/src/http/ngx_http_parse_time.c
|
|
307
|
-
- vendor/nginx/src/http/ngx_http_postpone_filter_module.c
|
|
308
|
-
- vendor/nginx/src/http/ngx_http_request.c
|
|
309
|
-
- vendor/nginx/src/http/ngx_http_request.h
|
|
310
141
|
- vendor/nginx/src/http/ngx_http_request_body.c
|
|
311
|
-
- vendor/nginx/src/http/
|
|
142
|
+
- vendor/nginx/src/http/ngx_http_busy_lock.c
|
|
143
|
+
- vendor/nginx/src/http/ngx_http_header_filter_module.c
|
|
312
144
|
- vendor/nginx/src/http/ngx_http_script.h
|
|
145
|
+
- vendor/nginx/src/http/ngx_http_request.h
|
|
146
|
+
- vendor/nginx/src/http/ngx_http_postpone_filter_module.c
|
|
313
147
|
- vendor/nginx/src/http/ngx_http_special_response.c
|
|
314
|
-
- vendor/nginx/src/http/
|
|
315
|
-
- vendor/nginx/src/http/
|
|
316
|
-
- vendor/nginx/src/http/ngx_http_upstream_round_robin.c
|
|
148
|
+
- vendor/nginx/src/http/ngx_http.h
|
|
149
|
+
- vendor/nginx/src/http/ngx_http_busy_lock.h
|
|
317
150
|
- vendor/nginx/src/http/ngx_http_upstream_round_robin.h
|
|
318
|
-
- vendor/nginx/src/
|
|
319
|
-
- vendor/nginx/src/
|
|
320
|
-
- vendor/nginx/src/
|
|
151
|
+
- vendor/nginx/src/event/ngx_event_pipe.c
|
|
152
|
+
- vendor/nginx/src/event/ngx_event.h
|
|
153
|
+
- vendor/nginx/src/event/ngx_event_busy_lock.h
|
|
154
|
+
- vendor/nginx/src/event/ngx_event_busy_lock.c
|
|
155
|
+
- vendor/nginx/src/event/ngx_event_openssl.c
|
|
156
|
+
- vendor/nginx/src/event/ngx_event_connect.c
|
|
157
|
+
- vendor/nginx/src/event/ngx_event_timer.h
|
|
158
|
+
- vendor/nginx/src/event/ngx_event.c
|
|
159
|
+
- vendor/nginx/src/event/ngx_event_connect.h
|
|
160
|
+
- vendor/nginx/src/event/modules/ngx_aio_module.c
|
|
161
|
+
- vendor/nginx/src/event/modules/ngx_epoll_module.c
|
|
162
|
+
- vendor/nginx/src/event/modules/ngx_devpoll_module.c
|
|
163
|
+
- vendor/nginx/src/event/modules/ngx_rtsig_module.c
|
|
164
|
+
- vendor/nginx/src/event/modules/ngx_select_module.c
|
|
165
|
+
- vendor/nginx/src/event/modules/ngx_eventport_module.c
|
|
166
|
+
- vendor/nginx/src/event/modules/ngx_poll_module.c
|
|
167
|
+
- vendor/nginx/src/event/modules/ngx_kqueue_module.c
|
|
168
|
+
- vendor/nginx/src/event/modules/ngx_win32_select_module.c
|
|
169
|
+
- vendor/nginx/src/event/ngx_event_posted.h
|
|
170
|
+
- vendor/nginx/src/event/ngx_event_pipe.h
|
|
171
|
+
- vendor/nginx/src/event/ngx_event_timer.c
|
|
172
|
+
- vendor/nginx/src/event/ngx_event_posted.c
|
|
173
|
+
- vendor/nginx/src/event/ngx_event_accept.c
|
|
174
|
+
- vendor/nginx/src/event/ngx_event_mutex.c
|
|
175
|
+
- vendor/nginx/src/event/ngx_event_openssl.h
|
|
176
|
+
- vendor/nginx/src/core/ngx_murmurhash.h
|
|
177
|
+
- vendor/nginx/src/core/ngx_regex.h
|
|
178
|
+
- vendor/nginx/src/core/ngx_times.h
|
|
179
|
+
- vendor/nginx/src/core/ngx_sha1.h
|
|
180
|
+
- vendor/nginx/src/core/ngx_times.c
|
|
181
|
+
- vendor/nginx/src/core/ngx_connection.c
|
|
182
|
+
- vendor/nginx/src/core/ngx_list.h
|
|
183
|
+
- vendor/nginx/src/core/ngx_shmtx.c
|
|
184
|
+
- vendor/nginx/src/core/ngx_palloc.h
|
|
185
|
+
- vendor/nginx/src/core/nginx.h
|
|
186
|
+
- vendor/nginx/src/core/ngx_open_file_cache.h
|
|
187
|
+
- vendor/nginx/src/core/ngx_queue.c
|
|
188
|
+
- vendor/nginx/src/core/ngx_hash.h
|
|
189
|
+
- vendor/nginx/src/core/ngx_radix_tree.c
|
|
190
|
+
- vendor/nginx/src/core/ngx_palloc.c
|
|
191
|
+
- vendor/nginx/src/core/ngx_crc32.h
|
|
192
|
+
- vendor/nginx/src/core/ngx_queue.h
|
|
193
|
+
- vendor/nginx/src/core/nginx.c
|
|
194
|
+
- vendor/nginx/src/core/ngx_md5.h
|
|
195
|
+
- vendor/nginx/src/core/ngx_array.h
|
|
196
|
+
- vendor/nginx/src/core/ngx_slab.c
|
|
197
|
+
- vendor/nginx/src/core/ngx_inet.c
|
|
198
|
+
- vendor/nginx/src/core/ngx_slab.h
|
|
199
|
+
- vendor/nginx/src/core/ngx_config.h
|
|
200
|
+
- vendor/nginx/src/core/ngx_rbtree.h
|
|
201
|
+
- vendor/nginx/src/core/ngx_log.h
|
|
202
|
+
- vendor/nginx/src/core/ngx_string.h
|
|
203
|
+
- vendor/nginx/src/core/ngx_buf.h
|
|
204
|
+
- vendor/nginx/src/core/ngx_inet.h
|
|
205
|
+
- vendor/nginx/src/core/ngx_connection.h
|
|
206
|
+
- vendor/nginx/src/core/ngx_open_file_cache.c
|
|
207
|
+
- vendor/nginx/src/core/ngx_parse.h
|
|
208
|
+
- vendor/nginx/src/core/ngx_core.h
|
|
209
|
+
- vendor/nginx/src/core/ngx_cycle.c
|
|
210
|
+
- vendor/nginx/src/core/ngx_buf.c
|
|
211
|
+
- vendor/nginx/src/core/ngx_hash.c
|
|
212
|
+
- vendor/nginx/src/core/ngx_regex.c
|
|
213
|
+
- vendor/nginx/src/core/ngx_spinlock.c
|
|
214
|
+
- vendor/nginx/src/core/ngx_cpuinfo.c
|
|
215
|
+
- vendor/nginx/src/core/ngx_output_chain.c
|
|
216
|
+
- vendor/nginx/src/core/ngx_resolver.h
|
|
217
|
+
- vendor/nginx/src/core/ngx_conf_file.h
|
|
218
|
+
- vendor/nginx/src/core/ngx_array.c
|
|
219
|
+
- vendor/nginx/src/core/ngx_resolver.c
|
|
220
|
+
- vendor/nginx/src/core/ngx_md5.c
|
|
221
|
+
- vendor/nginx/src/core/ngx_murmurhash.c
|
|
222
|
+
- vendor/nginx/src/core/ngx_conf_file.c
|
|
223
|
+
- vendor/nginx/src/core/ngx_crypt.h
|
|
224
|
+
- vendor/nginx/src/core/ngx_log.c
|
|
225
|
+
- vendor/nginx/src/core/ngx_string.c
|
|
226
|
+
- vendor/nginx/src/core/ngx_file.c
|
|
227
|
+
- vendor/nginx/src/core/ngx_crypt.c
|
|
228
|
+
- vendor/nginx/src/core/ngx_cycle.h
|
|
229
|
+
- vendor/nginx/src/core/ngx_crc.h
|
|
230
|
+
- vendor/nginx/src/core/ngx_shmtx.h
|
|
231
|
+
- vendor/nginx/src/core/ngx_file.h
|
|
232
|
+
- vendor/nginx/src/core/ngx_list.c
|
|
233
|
+
- vendor/nginx/src/core/ngx_rbtree.c
|
|
234
|
+
- vendor/nginx/src/core/ngx_parse.c
|
|
235
|
+
- vendor/nginx/src/core/ngx_radix_tree.h
|
|
236
|
+
- vendor/nginx/src/core/ngx_crc32.c
|
|
237
|
+
- vendor/nginx/src/misc/ngx_google_perftools_module.c
|
|
238
|
+
- vendor/nginx/src/misc/ngx_cpp_test_module.cpp
|
|
239
|
+
- vendor/nginx/src/mail/ngx_mail_parse.c
|
|
321
240
|
- vendor/nginx/src/mail/ngx_mail.c
|
|
322
|
-
- vendor/nginx/src/mail/ngx_mail.h
|
|
323
|
-
- vendor/nginx/src/mail/ngx_mail_auth_http_module.c
|
|
324
|
-
- vendor/nginx/src/mail/ngx_mail_core_module.c
|
|
325
|
-
- vendor/nginx/src/mail/ngx_mail_handler.c
|
|
326
241
|
- vendor/nginx/src/mail/ngx_mail_imap_handler.c
|
|
327
|
-
- vendor/nginx/src/mail/ngx_mail_imap_module.c
|
|
328
242
|
- vendor/nginx/src/mail/ngx_mail_imap_module.h
|
|
329
|
-
- vendor/nginx/src/mail/
|
|
243
|
+
- vendor/nginx/src/mail/ngx_mail_ssl_module.c
|
|
244
|
+
- vendor/nginx/src/mail/ngx_mail_handler.c
|
|
245
|
+
- vendor/nginx/src/mail/ngx_mail_imap_module.c
|
|
246
|
+
- vendor/nginx/src/mail/ngx_mail_smtp_handler.c
|
|
330
247
|
- vendor/nginx/src/mail/ngx_mail_pop3_handler.c
|
|
331
248
|
- vendor/nginx/src/mail/ngx_mail_pop3_module.c
|
|
249
|
+
- vendor/nginx/src/mail/ngx_mail.h
|
|
250
|
+
- vendor/nginx/src/mail/ngx_mail_smtp_module.c
|
|
332
251
|
- vendor/nginx/src/mail/ngx_mail_pop3_module.h
|
|
333
252
|
- vendor/nginx/src/mail/ngx_mail_proxy_module.c
|
|
334
|
-
- vendor/nginx/src/mail/ngx_mail_smtp_handler.c
|
|
335
|
-
- vendor/nginx/src/mail/ngx_mail_smtp_module.c
|
|
336
253
|
- vendor/nginx/src/mail/ngx_mail_smtp_module.h
|
|
337
|
-
- vendor/nginx/src/mail/ngx_mail_ssl_module.c
|
|
338
254
|
- vendor/nginx/src/mail/ngx_mail_ssl_module.h
|
|
339
|
-
- vendor/nginx/src/
|
|
340
|
-
- vendor/nginx/src/
|
|
341
|
-
- vendor/nginx/src/os/unix/
|
|
342
|
-
- vendor/nginx/src/os/unix/
|
|
343
|
-
- vendor/nginx/src/os/unix/
|
|
344
|
-
- vendor/nginx/src/os/unix/ngx_aio_write_chain.c
|
|
345
|
-
- vendor/nginx/src/os/unix/ngx_alloc.c
|
|
346
|
-
- vendor/nginx/src/os/unix/ngx_alloc.h
|
|
347
|
-
- vendor/nginx/src/os/unix/ngx_atomic.h
|
|
348
|
-
- vendor/nginx/src/os/unix/ngx_channel.c
|
|
255
|
+
- vendor/nginx/src/mail/ngx_mail_core_module.c
|
|
256
|
+
- vendor/nginx/src/mail/ngx_mail_auth_http_module.c
|
|
257
|
+
- vendor/nginx/src/os/unix/ngx_thread.h
|
|
258
|
+
- vendor/nginx/src/os/unix/ngx_shmem.c
|
|
259
|
+
- vendor/nginx/src/os/unix/ngx_socket.c
|
|
349
260
|
- vendor/nginx/src/os/unix/ngx_channel.h
|
|
350
|
-
- vendor/nginx/src/os/unix/
|
|
351
|
-
- vendor/nginx/src/os/unix/ngx_darwin.h
|
|
352
|
-
- vendor/nginx/src/os/unix/ngx_darwin_config.h
|
|
353
|
-
- vendor/nginx/src/os/unix/ngx_darwin_init.c
|
|
354
|
-
- vendor/nginx/src/os/unix/ngx_darwin_sendfile_chain.c
|
|
355
|
-
- vendor/nginx/src/os/unix/ngx_errno.c
|
|
356
|
-
- vendor/nginx/src/os/unix/ngx_errno.h
|
|
357
|
-
- vendor/nginx/src/os/unix/ngx_file_aio_read.c
|
|
358
|
-
- vendor/nginx/src/os/unix/ngx_files.c
|
|
261
|
+
- vendor/nginx/src/os/unix/ngx_gcc_atomic_sparc64.h
|
|
359
262
|
- vendor/nginx/src/os/unix/ngx_files.h
|
|
360
|
-
- vendor/nginx/src/os/unix/
|
|
361
|
-
- vendor/nginx/src/os/unix/
|
|
362
|
-
- vendor/nginx/src/os/unix/
|
|
263
|
+
- vendor/nginx/src/os/unix/ngx_aio_write_chain.c
|
|
264
|
+
- vendor/nginx/src/os/unix/ngx_linux_init.c
|
|
265
|
+
- vendor/nginx/src/os/unix/ngx_aio_read_chain.c
|
|
266
|
+
- vendor/nginx/src/os/unix/ngx_process.h
|
|
267
|
+
- vendor/nginx/src/os/unix/ngx_files.c
|
|
268
|
+
- vendor/nginx/src/os/unix/ngx_gcc_atomic_x86.h
|
|
269
|
+
- vendor/nginx/src/os/unix/ngx_solaris.h
|
|
270
|
+
- vendor/nginx/src/os/unix/ngx_sunpro_atomic_sparc64.h
|
|
271
|
+
- vendor/nginx/src/os/unix/ngx_errno.c
|
|
272
|
+
- vendor/nginx/src/os/unix/ngx_os.h
|
|
273
|
+
- vendor/nginx/src/os/unix/ngx_channel.c
|
|
363
274
|
- vendor/nginx/src/os/unix/ngx_freebsd_rfork_thread.c
|
|
364
|
-
- vendor/nginx/src/os/unix/
|
|
275
|
+
- vendor/nginx/src/os/unix/ngx_shmem.h
|
|
276
|
+
- vendor/nginx/src/os/unix/ngx_darwin_init.c
|
|
277
|
+
- vendor/nginx/src/os/unix/ngx_sunpro_x86.il
|
|
278
|
+
- vendor/nginx/src/os/unix/ngx_darwin_config.h
|
|
279
|
+
- vendor/nginx/src/os/unix/ngx_atomic.h
|
|
280
|
+
- vendor/nginx/src/os/unix/ngx_aio_write.c
|
|
281
|
+
- vendor/nginx/src/os/unix/ngx_setproctitle.h
|
|
282
|
+
- vendor/nginx/src/os/unix/ngx_solaris_init.c
|
|
283
|
+
- vendor/nginx/src/os/unix/rfork_thread.S
|
|
284
|
+
- vendor/nginx/src/os/unix/ngx_user.c
|
|
365
285
|
- vendor/nginx/src/os/unix/ngx_freebsd_sendfile_chain.c
|
|
366
|
-
- vendor/nginx/src/os/unix/ngx_gcc_atomic_amd64.h
|
|
367
286
|
- vendor/nginx/src/os/unix/ngx_gcc_atomic_ppc.h
|
|
368
|
-
- vendor/nginx/src/os/unix/
|
|
369
|
-
- vendor/nginx/src/os/unix/ngx_gcc_atomic_x86.h
|
|
370
|
-
- vendor/nginx/src/os/unix/ngx_linux.h
|
|
371
|
-
- vendor/nginx/src/os/unix/ngx_linux_aio_read.c
|
|
372
|
-
- vendor/nginx/src/os/unix/ngx_linux_config.h
|
|
373
|
-
- vendor/nginx/src/os/unix/ngx_linux_init.c
|
|
374
|
-
- vendor/nginx/src/os/unix/ngx_linux_sendfile_chain.c
|
|
375
|
-
- vendor/nginx/src/os/unix/ngx_os.h
|
|
376
|
-
- vendor/nginx/src/os/unix/ngx_posix_config.h
|
|
287
|
+
- vendor/nginx/src/os/unix/ngx_setproctitle.c
|
|
377
288
|
- vendor/nginx/src/os/unix/ngx_posix_init.c
|
|
378
289
|
- vendor/nginx/src/os/unix/ngx_process.c
|
|
379
|
-
- vendor/nginx/src/os/unix/
|
|
380
|
-
- vendor/nginx/src/os/unix/ngx_process_cycle.c
|
|
381
|
-
- vendor/nginx/src/os/unix/ngx_process_cycle.h
|
|
382
|
-
- vendor/nginx/src/os/unix/ngx_pthread_thread.c
|
|
383
|
-
- vendor/nginx/src/os/unix/ngx_readv_chain.c
|
|
384
|
-
- vendor/nginx/src/os/unix/ngx_recv.c
|
|
385
|
-
- vendor/nginx/src/os/unix/ngx_send.c
|
|
290
|
+
- vendor/nginx/src/os/unix/ngx_freebsd_config.h
|
|
386
291
|
- vendor/nginx/src/os/unix/ngx_setaffinity.c
|
|
292
|
+
- vendor/nginx/src/os/unix/ngx_darwin_sendfile_chain.c
|
|
293
|
+
- vendor/nginx/src/os/unix/ngx_sunpro_amd64.il
|
|
294
|
+
- vendor/nginx/src/os/unix/ngx_file_aio_read.c
|
|
295
|
+
- vendor/nginx/src/os/unix/ngx_freebsd_init.c
|
|
296
|
+
- vendor/nginx/src/os/unix/ngx_posix_config.h
|
|
387
297
|
- vendor/nginx/src/os/unix/ngx_setaffinity.h
|
|
388
|
-
- vendor/nginx/src/os/unix/
|
|
389
|
-
- vendor/nginx/src/os/unix/ngx_setproctitle.h
|
|
390
|
-
- vendor/nginx/src/os/unix/ngx_shmem.c
|
|
391
|
-
- vendor/nginx/src/os/unix/ngx_shmem.h
|
|
392
|
-
- vendor/nginx/src/os/unix/ngx_socket.c
|
|
393
|
-
- vendor/nginx/src/os/unix/ngx_socket.h
|
|
394
|
-
- vendor/nginx/src/os/unix/ngx_solaris.h
|
|
298
|
+
- vendor/nginx/src/os/unix/ngx_linux.h
|
|
395
299
|
- vendor/nginx/src/os/unix/ngx_solaris_config.h
|
|
396
|
-
- vendor/nginx/src/os/unix/
|
|
300
|
+
- vendor/nginx/src/os/unix/ngx_readv_chain.c
|
|
301
|
+
- vendor/nginx/src/os/unix/ngx_user.h
|
|
302
|
+
- vendor/nginx/src/os/unix/ngx_errno.h
|
|
303
|
+
- vendor/nginx/src/os/unix/ngx_linux_aio_read.c
|
|
397
304
|
- vendor/nginx/src/os/unix/ngx_solaris_sendfilev_chain.c
|
|
398
|
-
- vendor/nginx/src/os/unix/
|
|
399
|
-
- vendor/nginx/src/os/unix/
|
|
400
|
-
- vendor/nginx/src/os/unix/ngx_sunpro_sparc64.il
|
|
401
|
-
- vendor/nginx/src/os/unix/ngx_sunpro_x86.il
|
|
402
|
-
- vendor/nginx/src/os/unix/ngx_thread.h
|
|
403
|
-
- vendor/nginx/src/os/unix/ngx_time.c
|
|
305
|
+
- vendor/nginx/src/os/unix/ngx_aio_read.c
|
|
306
|
+
- vendor/nginx/src/os/unix/ngx_writev_chain.c
|
|
404
307
|
- vendor/nginx/src/os/unix/ngx_time.h
|
|
308
|
+
- vendor/nginx/src/os/unix/ngx_gcc_atomic_amd64.h
|
|
309
|
+
- vendor/nginx/src/os/unix/ngx_process_cycle.h
|
|
310
|
+
- vendor/nginx/src/os/unix/ngx_daemon.c
|
|
311
|
+
- vendor/nginx/src/os/unix/ngx_time.c
|
|
312
|
+
- vendor/nginx/src/os/unix/ngx_freebsd_rfork_thread.h
|
|
313
|
+
- vendor/nginx/src/os/unix/ngx_linux_config.h
|
|
314
|
+
- vendor/nginx/src/os/unix/ngx_send.c
|
|
315
|
+
- vendor/nginx/src/os/unix/ngx_recv.c
|
|
316
|
+
- vendor/nginx/src/os/unix/ngx_sunpro_sparc64.il
|
|
317
|
+
- vendor/nginx/src/os/unix/ngx_alloc.c
|
|
318
|
+
- vendor/nginx/src/os/unix/ngx_alloc.h
|
|
319
|
+
- vendor/nginx/src/os/unix/ngx_pthread_thread.c
|
|
320
|
+
- vendor/nginx/src/os/unix/ngx_darwin.h
|
|
321
|
+
- vendor/nginx/src/os/unix/ngx_process_cycle.c
|
|
405
322
|
- vendor/nginx/src/os/unix/ngx_udp_recv.c
|
|
406
|
-
- vendor/nginx/src/os/unix/
|
|
407
|
-
- vendor/nginx/src/os/unix/
|
|
408
|
-
- vendor/nginx/src/os/unix/
|
|
409
|
-
- vendor/nginx/
|
|
323
|
+
- vendor/nginx/src/os/unix/ngx_linux_sendfile_chain.c
|
|
324
|
+
- vendor/nginx/src/os/unix/ngx_freebsd.h
|
|
325
|
+
- vendor/nginx/src/os/unix/ngx_socket.h
|
|
326
|
+
- vendor/nginx/CHANGES
|
|
327
|
+
- vendor/nginx/README
|
|
328
|
+
- vendor/nginx/man/nginx.8
|
|
329
|
+
- vendor/nginx/contrib/geo2nginx.pl
|
|
330
|
+
- vendor/nginx/contrib/README
|
|
331
|
+
- vendor/nginx/contrib/unicode2nginx/unicode-to-nginx.pl
|
|
332
|
+
- vendor/nginx/contrib/unicode2nginx/win-utf
|
|
333
|
+
- vendor/nginx/contrib/unicode2nginx/koi-utf
|
|
334
|
+
- vendor/nginx/auto/define
|
|
335
|
+
- vendor/nginx/auto/types/uintptr_t
|
|
336
|
+
- vendor/nginx/auto/types/typedef
|
|
337
|
+
- vendor/nginx/auto/types/value
|
|
338
|
+
- vendor/nginx/auto/types/sizeof
|
|
339
|
+
- vendor/nginx/auto/have_headers
|
|
340
|
+
- vendor/nginx/auto/endianness
|
|
341
|
+
- vendor/nginx/auto/headers
|
|
342
|
+
- vendor/nginx/auto/unix
|
|
343
|
+
- vendor/nginx/auto/lib/libgd/conf
|
|
344
|
+
- vendor/nginx/auto/lib/conf
|
|
345
|
+
- vendor/nginx/auto/lib/google-perftools/conf
|
|
346
|
+
- vendor/nginx/auto/lib/pcre/conf
|
|
347
|
+
- vendor/nginx/auto/lib/pcre/makefile.msvc
|
|
348
|
+
- vendor/nginx/auto/lib/pcre/make
|
|
349
|
+
- vendor/nginx/auto/lib/pcre/makefile.bcc
|
|
350
|
+
- vendor/nginx/auto/lib/pcre/makefile.owc
|
|
351
|
+
- vendor/nginx/auto/lib/md5/conf
|
|
352
|
+
- vendor/nginx/auto/lib/md5/makefile.msvc
|
|
353
|
+
- vendor/nginx/auto/lib/md5/make
|
|
354
|
+
- vendor/nginx/auto/lib/md5/makefile.bcc
|
|
355
|
+
- vendor/nginx/auto/lib/md5/makefile.owc
|
|
356
|
+
- vendor/nginx/auto/lib/libatomic/conf
|
|
357
|
+
- vendor/nginx/auto/lib/libatomic/make
|
|
358
|
+
- vendor/nginx/auto/lib/perl/conf
|
|
359
|
+
- vendor/nginx/auto/lib/perl/make
|
|
360
|
+
- vendor/nginx/auto/lib/make
|
|
361
|
+
- vendor/nginx/auto/lib/geoip/conf
|
|
362
|
+
- vendor/nginx/auto/lib/sha1/conf
|
|
363
|
+
- vendor/nginx/auto/lib/sha1/makefile.msvc
|
|
364
|
+
- vendor/nginx/auto/lib/sha1/make
|
|
365
|
+
- vendor/nginx/auto/lib/sha1/makefile.bcc
|
|
366
|
+
- vendor/nginx/auto/lib/sha1/makefile.owc
|
|
367
|
+
- vendor/nginx/auto/lib/openssl/conf
|
|
368
|
+
- vendor/nginx/auto/lib/openssl/makefile.msvc
|
|
369
|
+
- vendor/nginx/auto/lib/openssl/make
|
|
370
|
+
- vendor/nginx/auto/lib/openssl/makefile.bcc
|
|
371
|
+
- vendor/nginx/auto/lib/zlib/patch.zlib.h
|
|
372
|
+
- vendor/nginx/auto/lib/zlib/conf
|
|
373
|
+
- vendor/nginx/auto/lib/zlib/makefile.msvc
|
|
374
|
+
- vendor/nginx/auto/lib/zlib/make
|
|
375
|
+
- vendor/nginx/auto/lib/zlib/makefile.bcc
|
|
376
|
+
- vendor/nginx/auto/lib/zlib/makefile.owc
|
|
377
|
+
- vendor/nginx/auto/lib/test
|
|
378
|
+
- vendor/nginx/auto/lib/libxslt/conf
|
|
379
|
+
- vendor/nginx/auto/summary
|
|
380
|
+
- vendor/nginx/auto/modules
|
|
381
|
+
- vendor/nginx/auto/include
|
|
382
|
+
- vendor/nginx/auto/have
|
|
383
|
+
- vendor/nginx/auto/make
|
|
384
|
+
- vendor/nginx/auto/options
|
|
385
|
+
- vendor/nginx/auto/stubs
|
|
386
|
+
- vendor/nginx/auto/nohave
|
|
387
|
+
- vendor/nginx/auto/feature
|
|
388
|
+
- vendor/nginx/auto/init
|
|
389
|
+
- vendor/nginx/auto/install
|
|
390
|
+
- vendor/nginx/auto/os/darwin
|
|
391
|
+
- vendor/nginx/auto/os/freebsd
|
|
392
|
+
- vendor/nginx/auto/os/conf
|
|
393
|
+
- vendor/nginx/auto/os/win32
|
|
394
|
+
- vendor/nginx/auto/os/linux
|
|
395
|
+
- vendor/nginx/auto/os/solaris
|
|
396
|
+
- vendor/nginx/auto/cc/bcc
|
|
397
|
+
- vendor/nginx/auto/cc/sunc
|
|
398
|
+
- vendor/nginx/auto/cc/clang
|
|
399
|
+
- vendor/nginx/auto/cc/conf
|
|
400
|
+
- vendor/nginx/auto/cc/icc
|
|
401
|
+
- vendor/nginx/auto/cc/acc
|
|
402
|
+
- vendor/nginx/auto/cc/owc
|
|
403
|
+
- vendor/nginx/auto/cc/msvc
|
|
404
|
+
- vendor/nginx/auto/cc/ccc
|
|
405
|
+
- vendor/nginx/auto/cc/gcc
|
|
406
|
+
- vendor/nginx/auto/cc/name
|
|
407
|
+
- vendor/nginx/auto/sources
|
|
408
|
+
- vendor/nginx/html/50x.html
|
|
409
|
+
- vendor/nginx/html/index.html
|
|
410
410
|
homepage: http://reasonnumber.com/nginxtra
|
|
411
411
|
licenses: []
|
|
412
412
|
post_install_message:
|