passenger 5.0.28 → 5.0.29

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of passenger might be problematic. Click here for more details.

Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +5 -0
  3. data/CHANGELOG +13 -0
  4. data/build/apache2.rb +3 -3
  5. data/build/common_library.rb +3 -3
  6. data/build/nginx.rb +4 -4
  7. data/build/packaging.rb +9 -8
  8. data/build/support/cxx_dependency_map.rb +9 -7
  9. data/build/support/general.rb +39 -0
  10. data/build/support/vendor/cxxcodebuilder/CxxCodeBuilder.sublime-project +8 -0
  11. data/build/support/vendor/cxxcodebuilder/Gemfile +4 -0
  12. data/build/support/vendor/cxxcodebuilder/Gemfile.lock +28 -0
  13. data/build/support/vendor/cxxcodebuilder/LICENSE.md +19 -0
  14. data/build/support/vendor/cxxcodebuilder/README.md +98 -0
  15. data/build/support/vendor/cxxcodebuilder/Rakefile +4 -0
  16. data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder.rb +23 -0
  17. data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder/builder.rb +574 -0
  18. data/build/support/vendor/cxxcodebuilder/lib/cxxcodebuilder/initializer_builder.rb +166 -0
  19. data/build/test_basics.rb +2 -1
  20. data/resources/templates/standalone/server.erb +6 -4
  21. data/src/agent/Core/Controller/ForwardResponse.cpp +5 -5
  22. data/src/agent/Watchdog/WatchdogMain.cpp +0 -10
  23. data/src/apache2_module/ConfigurationCommands.cpp +181 -248
  24. data/src/apache2_module/ConfigurationCommands.cpp.cxxcodebuilder +127 -0
  25. data/src/apache2_module/ConfigurationFields.hpp +135 -51
  26. data/src/apache2_module/ConfigurationFields.hpp.cxxcodebuilder +113 -0
  27. data/src/apache2_module/ConfigurationSetters.cpp +414 -459
  28. data/src/apache2_module/ConfigurationSetters.cpp.cxxcodebuilder +144 -0
  29. data/src/apache2_module/CreateDirConfig.cpp +49 -52
  30. data/src/apache2_module/CreateDirConfig.cpp.cxxcodebuilder +81 -0
  31. data/src/apache2_module/Hooks.cpp +0 -14
  32. data/src/apache2_module/MergeDirConfig.cpp +136 -226
  33. data/src/apache2_module/MergeDirConfig.cpp.cxxcodebuilder +97 -0
  34. data/src/apache2_module/SetHeaders.cpp +92 -143
  35. data/src/apache2_module/SetHeaders.cpp.cxxcodebuilder +106 -0
  36. data/src/cxx_supportlib/Constants.h +86 -146
  37. data/src/cxx_supportlib/Constants.h.cxxcodebuilder +43 -0
  38. data/src/cxx_supportlib/DataStructures/LString.h +40 -23
  39. data/src/cxx_supportlib/MemoryKit/mbuf.cpp +60 -25
  40. data/src/cxx_supportlib/MemoryKit/mbuf.h +50 -25
  41. data/src/cxx_supportlib/ServerKit/CookieUtils.h +36 -3
  42. data/src/cxx_supportlib/ServerKit/HeaderTable.h +2 -8
  43. data/src/cxx_supportlib/ServerKit/HttpServer.h +6 -15
  44. data/src/cxx_supportlib/WatchdogLauncher.cpp +4 -4
  45. data/src/cxx_supportlib/WatchdogLauncher.h +2 -3
  46. data/src/nginx_module/CacheLocationConfig.c +623 -780
  47. data/src/nginx_module/CacheLocationConfig.c.cxxcodebuilder +214 -0
  48. data/src/nginx_module/Configuration.h +1 -1
  49. data/src/nginx_module/ConfigurationCommands.c +404 -535
  50. data/src/nginx_module/ConfigurationCommands.c.cxxcodebuilder +157 -0
  51. data/src/nginx_module/CreateLocationConfig.c +82 -206
  52. data/src/nginx_module/CreateLocationConfig.c.cxxcodebuilder +98 -0
  53. data/src/nginx_module/LocationConfig.h +97 -0
  54. data/src/nginx_module/LocationConfig.h.cxxcodebuilder +131 -0
  55. data/src/nginx_module/MergeLocationConfig.c +157 -278
  56. data/src/nginx_module/MergeLocationConfig.c.cxxcodebuilder +144 -0
  57. data/src/nginx_module/ngx_http_passenger_module.c +4 -10
  58. data/src/ruby_supportlib/phusion_passenger.rb +4 -4
  59. data/src/ruby_supportlib/phusion_passenger/config/validate_install_command.rb +2 -2
  60. data/src/ruby_supportlib/phusion_passenger/packaging.rb +2 -0
  61. data/src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb +6 -0
  62. data/src/ruby_supportlib/phusion_passenger/platform_info/cxx_portability.rb +1 -1
  63. data/src/ruby_supportlib/phusion_passenger/standalone/start_command.rb +27 -8
  64. data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller.rb +120 -2
  65. data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/lock_file.rb +1 -1
  66. data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/spawn.rb +4 -4
  67. data/src/ruby_supportlib/phusion_passenger/vendor/daemon_controller/version.rb +1 -1
  68. data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/api.rb +5 -5
  69. metadata +24 -15
  70. data/src/apache2_module/ConfigurationCommands.cpp.erb +0 -109
  71. data/src/apache2_module/ConfigurationFields.hpp.erb +0 -98
  72. data/src/apache2_module/ConfigurationSetters.cpp.erb +0 -128
  73. data/src/apache2_module/CreateDirConfig.cpp.erb +0 -72
  74. data/src/apache2_module/MergeDirConfig.cpp.erb +0 -82
  75. data/src/apache2_module/SetHeaders.cpp.erb +0 -91
  76. data/src/cxx_supportlib/Constants.h.erb +0 -41
  77. data/src/nginx_module/CacheLocationConfig.c.erb +0 -171
  78. data/src/nginx_module/ConfigurationCommands.c.erb +0 -144
  79. data/src/nginx_module/ConfigurationFields.h +0 -145
  80. data/src/nginx_module/ConfigurationFields.h.erb +0 -112
  81. data/src/nginx_module/CreateLocationConfig.c.erb +0 -78
  82. data/src/nginx_module/MergeLocationConfig.c.erb +0 -118
@@ -0,0 +1,157 @@
1
+ # Phusion Passenger - https://www.phusionpassenger.com/
2
+ # Copyright (c) 2010-2016 Phusion Holding B.V.
3
+ #
4
+ # "Passenger", "Phusion Passenger" and "Union Station" are registered
5
+ # trademarks of Phusion Holding B.V.
6
+ #
7
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ # of this software and associated documentation files (the "Software"), to deal
9
+ # in the Software without restriction, including without limitation the rights
10
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ # copies of the Software, and to permit persons to whom the Software is
12
+ # furnished to do so, subject to the following conditions:
13
+ #
14
+ # The above copyright notice and this permission notice shall be included in
15
+ # all copies or substantial portions of the Software.
16
+ #
17
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ # THE SOFTWARE.
24
+
25
+ # This file uses the cxxcodebuilder API. Learn more at:
26
+ # https://github.com/phusion/passenger/cxxcodebuilder
27
+
28
+ require 'phusion_passenger/nginx/config_options'
29
+
30
+ def main
31
+ set_indent_string ' '
32
+ comment copyright_header_for(__FILE__)
33
+
34
+ separator
35
+
36
+ comment %q{
37
+ ConfigurationCommands.c is automatically generated from ConfigurationCommands.c.cxxcodebuilder,
38
+ using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
39
+ Edits to ConfigurationCommands.c will be lost.
40
+
41
+ To update ConfigurationCommands.c:
42
+ rake nginx
43
+
44
+ To force regeneration of ConfigurationCommands.c:
45
+ rm -f src/nginx_module/ConfigurationCommands.c
46
+ rake src/nginx_module/ConfigurationCommands.c
47
+ }
48
+
49
+ separator
50
+
51
+ ctx = self
52
+ LOCATION_CONFIGURATION_OPTIONS.each do |option|
53
+ option = resolve_possible_alias(option)
54
+
55
+ struct_initializer do
56
+ element "ngx_string(#{ctx.name_for(option)})"
57
+ element "#{ctx.context_for(option)} | #{ctx.take_type_for(option)}"
58
+ element ctx.setter_function_for(option)
59
+ element ctx.struct_for(option)
60
+ element ctx.struct_field_for(option)
61
+ element ctx.post_for(option)
62
+ end
63
+
64
+ add_code ','
65
+ end
66
+ end
67
+
68
+ def resolve_possible_alias(option)
69
+ if option[:alias_for]
70
+ the_alias = LOCATION_CONFIGURATION_OPTIONS.find do |o|
71
+ o[:name] == option[:alias_for]
72
+ end.dup
73
+ the_alias[:aliased_for] = option[:name]
74
+ the_alias
75
+ else
76
+ option
77
+ end
78
+ end
79
+
80
+ def name_for(option)
81
+ (option[:aliased_for] || option[:name]).inspect
82
+ end
83
+
84
+ def context_for(option)
85
+ context = option.fetch(:context, [:main, :srv, :loc, :lif])
86
+ context.map{ |c| "NGX_HTTP_#{c.to_s.upcase}_CONF" }.join(" | ")
87
+ end
88
+
89
+ def take_type_for(option)
90
+ return option[:take] if option[:take]
91
+
92
+ case option[:type]
93
+ when :string, :integer, :uinteger, :string_array
94
+ "NGX_CONF_TAKE1"
95
+ when :flag
96
+ "NGX_CONF_FLAG"
97
+ when :string_keyval
98
+ "NGX_CONF_TAKE2"
99
+ else
100
+ raise "Unknown type #{option[:type].inspect} for option #{option[:name]}"
101
+ end
102
+ end
103
+
104
+ def setter_function_for(option)
105
+ return option[:function] if option[:function]
106
+
107
+ case option[:type]
108
+ when :string
109
+ "ngx_conf_set_str_slot"
110
+ when :integer, :uinteger
111
+ "ngx_conf_set_num_slot"
112
+ when :flag
113
+ "ngx_conf_set_flag_slot"
114
+ when :string_array
115
+ "ngx_conf_set_str_array_slot"
116
+ when :string_keyval
117
+ "ngx_conf_set_keyval_slot"
118
+ when :path
119
+ "ngx_conf_set_path_slot"
120
+ else
121
+ raise "Unknown type #{option[:type].inspect} for option #{option[:name]}"
122
+ end
123
+ end
124
+
125
+ def struct_for(option)
126
+ option[:struct] || "NGX_HTTP_LOC_CONF_OFFSET"
127
+ end
128
+
129
+ def struct_type_for(option)
130
+ case struct_for(option)
131
+ when "NGX_HTTP_LOC_CONF_OFFSET"
132
+ "passenger_loc_conf_t"
133
+ when "NGX_HTTP_MAIN_CONF_OFFSET"
134
+ "passenger_main_conf_t"
135
+ else
136
+ raise "Unknown struct #{struct_for(option).inspect}"
137
+ end
138
+ end
139
+
140
+ def struct_field_for(option)
141
+ if option.has_key?(:field)
142
+ if field = option[:field]
143
+ "offsetof(#{struct_type_for(option)}, #{field})"
144
+ else
145
+ "0"
146
+ end
147
+ else
148
+ field = option[:name].sub(/^passenger_/, '')
149
+ "offsetof(#{struct_type_for(option)}, #{field})"
150
+ end
151
+ end
152
+
153
+ def post_for(option)
154
+ option[:post] || 'NULL'
155
+ end
156
+
157
+ main
@@ -1,31 +1,31 @@
1
1
  /*
2
- * Phusion Passenger - https://www.phusionpassenger.com/
3
- * Copyright (c) 2010-2015 Phusion Holding B.V.
2
+ * Phusion Passenger - https://www.phusionpassenger.com/
3
+ * Copyright (c) 2010-2016 Phusion Holding B.V.
4
4
  *
5
- * "Passenger", "Phusion Passenger" and "Union Station" are registered
6
- * trademarks of Phusion Holding B.V.
5
+ * "Passenger", "Phusion Passenger" and "Union Station" are registered
6
+ * trademarks of Phusion Holding B.V.
7
7
  *
8
- * Permission is hereby granted, free of charge, to any person obtaining a copy
9
- * of this software and associated documentation files (the "Software"), to deal
10
- * in the Software without restriction, including without limitation the rights
11
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
- * copies of the Software, and to permit persons to whom the Software is
13
- * furnished to do so, subject to the following conditions:
8
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
9
+ * of this software and associated documentation files (the "Software"), to deal
10
+ * in the Software without restriction, including without limitation the rights
11
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
+ * copies of the Software, and to permit persons to whom the Software is
13
+ * furnished to do so, subject to the following conditions:
14
14
  *
15
- * The above copyright notice and this permission notice shall be included in
16
- * all copies or substantial portions of the Software.
15
+ * The above copyright notice and this permission notice shall be included in
16
+ * all copies or substantial portions of the Software.
17
17
  *
18
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
- * THE SOFTWARE.
18
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
+ * THE SOFTWARE.
25
25
  */
26
26
 
27
27
  /*
28
- * CreateLocationConfig.c is automatically generated from CreateLocationConfig.c.erb,
28
+ * CreateLocationConfig.c is automatically generated from CreateLocationConfig.c.cxxcodebuilder,
29
29
  * using definitions from src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.
30
30
  * Edits to CreateLocationConfig.c will be lost.
31
31
  *
@@ -37,190 +37,66 @@
37
37
  * rake src/nginx_module/CreateLocationConfig.c
38
38
  */
39
39
 
40
- void generated_set_conf_part(passenger_loc_conf_t *conf) {
41
-
42
-
43
-
44
-
45
- conf->socket_backlog = NGX_CONF_UNSET;
46
-
47
-
48
-
49
- conf->core_file_descriptor_ulimit = NGX_CONF_UNSET_UINT;
50
-
51
-
52
-
53
- conf->app_file_descriptor_ulimit = NGX_CONF_UNSET_UINT;
54
-
55
-
56
-
57
- conf->enabled = NGX_CONF_UNSET;
58
-
59
-
60
-
61
- conf->ruby.data = NULL;
62
- conf->ruby.len = 0;
63
-
64
-
65
-
66
- conf->python.data = NULL;
67
- conf->python.len = 0;
68
-
69
-
70
-
71
- conf->nodejs.data = NULL;
72
- conf->nodejs.len = 0;
73
-
74
-
75
-
76
- conf->meteor_app_settings.data = NULL;
77
- conf->meteor_app_settings.len = 0;
78
-
79
-
80
-
81
- conf->environment.data = NULL;
82
- conf->environment.len = 0;
83
-
84
-
85
-
86
- conf->friendly_error_pages = NGX_CONF_UNSET;
87
-
88
-
89
-
90
- conf->min_instances = NGX_CONF_UNSET;
91
-
92
-
93
-
94
- conf->max_instances_per_app = NGX_CONF_UNSET;
95
-
96
-
97
-
98
- conf->max_requests = NGX_CONF_UNSET;
99
-
100
-
101
-
102
- conf->start_timeout = NGX_CONF_UNSET;
103
-
104
-
105
-
106
- conf->base_uris = NGX_CONF_UNSET_PTR;
107
-
108
-
109
-
110
- conf->document_root.data = NULL;
111
- conf->document_root.len = 0;
112
-
113
-
114
-
115
- conf->user.data = NULL;
116
- conf->user.len = 0;
117
-
118
-
119
-
120
- conf->group.data = NULL;
121
- conf->group.len = 0;
122
-
123
-
124
-
125
- conf->app_group_name.data = NULL;
126
- conf->app_group_name.len = 0;
127
-
128
-
129
-
130
- conf->app_root.data = NULL;
131
- conf->app_root.len = 0;
132
-
133
-
134
-
135
- conf->app_rights.data = NULL;
136
- conf->app_rights.len = 0;
137
-
138
-
139
-
140
- conf->union_station_support = NGX_CONF_UNSET;
141
-
142
-
143
-
144
- conf->union_station_filters = NGX_CONF_UNSET_PTR;
145
-
146
-
147
-
148
- conf->debugger = NGX_CONF_UNSET;
149
-
150
-
151
-
152
- conf->max_preloader_idle_time = NGX_CONF_UNSET;
153
-
154
-
155
-
156
- conf->env_vars = NULL;
157
-
158
-
159
-
160
- conf->headers_hash_max_size = NGX_CONF_UNSET_UINT;
161
-
162
-
163
-
164
- conf->headers_hash_bucket_size = NGX_CONF_UNSET_UINT;
165
-
166
-
167
-
168
- conf->spawn_method.data = NULL;
169
- conf->spawn_method.len = 0;
170
-
171
-
172
-
173
- conf->load_shell_envvars = NGX_CONF_UNSET;
174
-
175
-
176
-
177
- conf->union_station_key.data = NULL;
178
- conf->union_station_key.len = 0;
179
-
180
-
181
-
182
- conf->max_request_queue_size = NGX_CONF_UNSET;
183
-
184
-
185
-
186
- conf->request_queue_overflow_status_code = NGX_CONF_UNSET;
187
-
188
-
189
-
190
- conf->restart_dir.data = NULL;
191
- conf->restart_dir.len = 0;
192
-
193
-
194
-
195
- conf->app_type.data = NULL;
196
- conf->app_type.len = 0;
197
-
198
-
199
-
200
- conf->startup_file.data = NULL;
201
- conf->startup_file.len = 0;
202
-
203
-
204
-
205
- conf->sticky_sessions = NGX_CONF_UNSET;
206
-
207
-
208
-
209
- conf->sticky_sessions_cookie_name.data = NULL;
210
- conf->sticky_sessions_cookie_name.len = 0;
211
-
212
-
213
-
214
- conf->vary_turbocache_by_cookie.data = NULL;
215
- conf->vary_turbocache_by_cookie.len = 0;
216
-
217
-
218
-
219
- conf->abort_websockets_on_process_shutdown = NGX_CONF_UNSET;
220
-
221
-
222
-
223
- conf->force_max_concurrent_requests_per_process = NGX_CONF_UNSET;
224
-
225
-
40
+ void
41
+ generated_set_conf_part(passenger_loc_conf_t *conf) {
42
+ conf->socket_backlog = NGX_CONF_UNSET;
43
+ conf->core_file_descriptor_ulimit = NGX_CONF_UNSET_UINT;
44
+ conf->app_file_descriptor_ulimit = NGX_CONF_UNSET_UINT;
45
+ conf->enabled = NGX_CONF_UNSET;
46
+ conf->ruby.data = NULL;
47
+ conf->ruby.len = 0;
48
+ conf->python.data = NULL;
49
+ conf->python.len = 0;
50
+ conf->nodejs.data = NULL;
51
+ conf->nodejs.len = 0;
52
+ conf->meteor_app_settings.data = NULL;
53
+ conf->meteor_app_settings.len = 0;
54
+ conf->environment.data = NULL;
55
+ conf->environment.len = 0;
56
+ conf->friendly_error_pages = NGX_CONF_UNSET;
57
+ conf->min_instances = NGX_CONF_UNSET;
58
+ conf->max_instances_per_app = NGX_CONF_UNSET;
59
+ conf->max_requests = NGX_CONF_UNSET;
60
+ conf->start_timeout = NGX_CONF_UNSET;
61
+ conf->base_uris = NGX_CONF_UNSET_PTR;
62
+ conf->document_root.data = NULL;
63
+ conf->document_root.len = 0;
64
+ conf->user.data = NULL;
65
+ conf->user.len = 0;
66
+ conf->group.data = NULL;
67
+ conf->group.len = 0;
68
+ conf->app_group_name.data = NULL;
69
+ conf->app_group_name.len = 0;
70
+ conf->app_root.data = NULL;
71
+ conf->app_root.len = 0;
72
+ conf->app_rights.data = NULL;
73
+ conf->app_rights.len = 0;
74
+ conf->union_station_support = NGX_CONF_UNSET;
75
+ conf->union_station_filters = NGX_CONF_UNSET_PTR;
76
+ conf->debugger = NGX_CONF_UNSET;
77
+ conf->max_preloader_idle_time = NGX_CONF_UNSET;
78
+ conf->env_vars = NULL;
79
+ conf->headers_hash_max_size = NGX_CONF_UNSET_UINT;
80
+ conf->headers_hash_bucket_size = NGX_CONF_UNSET_UINT;
81
+ conf->spawn_method.data = NULL;
82
+ conf->spawn_method.len = 0;
83
+ conf->load_shell_envvars = NGX_CONF_UNSET;
84
+ conf->union_station_key.data = NULL;
85
+ conf->union_station_key.len = 0;
86
+ conf->max_request_queue_size = NGX_CONF_UNSET;
87
+ conf->request_queue_overflow_status_code = NGX_CONF_UNSET;
88
+ conf->restart_dir.data = NULL;
89
+ conf->restart_dir.len = 0;
90
+ conf->app_type.data = NULL;
91
+ conf->app_type.len = 0;
92
+ conf->startup_file.data = NULL;
93
+ conf->startup_file.len = 0;
94
+ conf->sticky_sessions = NGX_CONF_UNSET;
95
+ conf->sticky_sessions_cookie_name.data = NULL;
96
+ conf->sticky_sessions_cookie_name.len = 0;
97
+ conf->vary_turbocache_by_cookie.data = NULL;
98
+ conf->vary_turbocache_by_cookie.len = 0;
99
+ conf->abort_websockets_on_process_shutdown = NGX_CONF_UNSET;
100
+ conf->force_max_concurrent_requests_per_process = NGX_CONF_UNSET;
226
101
  }
102
+