passenger 5.3.4 → 6.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (283) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG +69 -0
  3. data/CONTRIBUTORS +1 -0
  4. data/README.md +2 -1
  5. data/Rakefile +0 -5
  6. data/build/agent.rb +6 -3
  7. data/build/cxx_tests.rb +28 -19
  8. data/build/integration_tests.rb +6 -2
  9. data/build/misc.rb +2 -1
  10. data/build/packaging.rb +2 -0
  11. data/build/support/cplusplus.rb +2 -2
  12. data/build/support/cxx_dependency_map.rb +2651 -2189
  13. data/dev/colorize-logs +272 -0
  14. data/dev/show-latest-crashlog-dir +27 -0
  15. data/resources/templates/standalone/http.erb +2 -0
  16. data/resources/templates/standalone/server.erb +1 -0
  17. data/src/agent/AgentMain.cpp +4 -0
  18. data/src/agent/Core/AdminPanelConnector.h +6 -6
  19. data/src/agent/Core/ApiServer.h +4 -4
  20. data/src/agent/Core/ApplicationPool/BasicProcessInfo.h +2 -2
  21. data/src/agent/Core/ApplicationPool/Context.h +5 -1
  22. data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +2 -2
  23. data/src/agent/Core/ApplicationPool/Group/LifetimeAndBasics.cpp +5 -0
  24. data/src/agent/Core/ApplicationPool/Group/Miscellaneous.cpp +2 -1
  25. data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +3 -3
  26. data/src/agent/Core/ApplicationPool/Group/ProcessListManagement.cpp +1 -1
  27. data/src/agent/Core/ApplicationPool/Group/StateInspection.cpp +13 -20
  28. data/src/agent/Core/ApplicationPool/Group.h +4 -2
  29. data/src/agent/Core/ApplicationPool/Implementation.cpp +5 -5
  30. data/src/agent/Core/ApplicationPool/Options.h +42 -38
  31. data/src/agent/Core/ApplicationPool/Pool/GroupUtils.cpp +2 -1
  32. data/src/agent/Core/ApplicationPool/Pool.h +4 -4
  33. data/src/agent/Core/ApplicationPool/Process.h +13 -15
  34. data/src/agent/Core/ApplicationPool/Socket.h +5 -5
  35. data/src/agent/Core/ApplicationPool/TestSession.h +3 -3
  36. data/src/agent/Core/Config.h +50 -10
  37. data/src/agent/Core/ConfigChange.cpp +13 -1
  38. data/src/agent/Core/Controller/Config.h +41 -17
  39. data/src/agent/Core/Controller/ForwardResponse.cpp +4 -0
  40. data/src/agent/Core/Controller/InitRequest.cpp +14 -8
  41. data/src/agent/Core/Controller/InitializationAndShutdown.cpp +5 -0
  42. data/src/agent/Core/Controller/SendRequest.cpp +9 -9
  43. data/src/agent/Core/Controller/TurboCaching.h +2 -2
  44. data/src/agent/Core/Controller.h +7 -5
  45. data/src/agent/Core/CoreMain.cpp +204 -60
  46. data/src/agent/Core/OptionParser.h +20 -3
  47. data/src/agent/Core/ResponseCache.h +3 -3
  48. data/src/agent/Core/SecurityUpdateChecker.h +4 -2
  49. data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h +1 -1
  50. data/src/agent/Core/SpawningKit/Config.h +3 -2
  51. data/src/agent/Core/SpawningKit/Context.h +8 -2
  52. data/src/agent/Core/SpawningKit/DirectSpawner.h +4 -4
  53. data/src/agent/Core/SpawningKit/DummySpawner.h +3 -3
  54. data/src/agent/Core/SpawningKit/ErrorRenderer.h +1 -1
  55. data/src/agent/Core/SpawningKit/Exceptions.h +21 -14
  56. data/src/agent/Core/SpawningKit/Factory.h +1 -1
  57. data/src/agent/Core/SpawningKit/Handshake/BackgroundIOCapturer.h +1 -1
  58. data/src/agent/Core/SpawningKit/Handshake/Perform.h +14 -2
  59. data/src/agent/Core/SpawningKit/Handshake/Prepare.h +3 -3
  60. data/src/agent/Core/SpawningKit/Handshake/WorkDir.h +1 -1
  61. data/src/agent/Core/SpawningKit/Journey.h +4 -5
  62. data/src/agent/Core/SpawningKit/PipeWatcher.h +1 -1
  63. data/src/agent/Core/SpawningKit/README.md +34 -17
  64. data/src/agent/Core/SpawningKit/Result/AutoGeneratedCode.h +1 -1
  65. data/src/agent/Core/SpawningKit/Result.h +20 -8
  66. data/src/agent/Core/SpawningKit/SmartSpawner.h +7 -7
  67. data/src/agent/Core/SpawningKit/Spawner.h +25 -8
  68. data/src/agent/Core/SpawningKit/UserSwitchingRules.h +17 -7
  69. data/src/agent/Core/TelemetryCollector.h +681 -0
  70. data/src/agent/ExecHelper/ExecHelperMain.cpp +1 -1
  71. data/src/agent/FileReadHelper/FileReadHelperMain.cpp +198 -0
  72. data/src/agent/README.md +1 -1
  73. data/src/agent/Shared/ApiAccountUtils.h +1 -1
  74. data/src/agent/Shared/ApiServerUtils.h +3 -3
  75. data/src/agent/Shared/ApplicationPoolApiKey.h +2 -2
  76. data/src/agent/Shared/Fundamentals/AbortHandler.cpp +324 -98
  77. data/src/agent/Shared/Fundamentals/AbortHandler.h +31 -4
  78. data/src/agent/Shared/Fundamentals/Initialization.cpp +4 -5
  79. data/src/agent/Shared/Fundamentals/Initialization.h +9 -1
  80. data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +1 -1
  81. data/src/agent/SystemMetrics/SystemMetricsMain.cpp +4 -3
  82. data/src/agent/TempDirToucher/TempDirToucherMain.cpp +3 -3
  83. data/src/agent/Watchdog/ApiServer.h +3 -3
  84. data/src/agent/Watchdog/Config.h +24 -5
  85. data/src/agent/Watchdog/CoreWatcher.cpp +2 -2
  86. data/src/agent/Watchdog/WatchdogMain.cpp +97 -28
  87. data/src/apache2_module/Config.cpp +14 -14
  88. data/src/apache2_module/Config.h +8 -16
  89. data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +510 -481
  90. data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp.cxxcodebuilder +39 -17
  91. data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +5 -0
  92. data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp +69 -1
  93. data/src/apache2_module/ConfigGeneral/AutoGeneratedSetterFuncs.cpp.cxxcodebuilder +31 -1
  94. data/src/apache2_module/ConfigGeneral/Common.h +45 -0
  95. data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +17 -1
  96. data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp.cxxcodebuilder +16 -1
  97. data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +19 -5
  98. data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp.cxxcodebuilder +26 -9
  99. data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +19 -1
  100. data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp.cxxcodebuilder +10 -1
  101. data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +14 -1
  102. data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp.cxxcodebuilder +11 -1
  103. data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +36 -1
  104. data/src/apache2_module/DirConfig/AutoGeneratedStruct.h.cxxcodebuilder +34 -1
  105. data/src/apache2_module/DirectoryMapper.h +36 -37
  106. data/src/apache2_module/Hooks.cpp +27 -8
  107. data/src/apache2_module/ServerConfig/AutoGeneratedManifestGeneration.cpp +20 -0
  108. data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h +48 -1
  109. data/src/apache2_module/ServerConfig/AutoGeneratedStruct.h.cxxcodebuilder +36 -1
  110. data/src/cxx_supportlib/{Utils → Algorithms}/Hasher.cpp +2 -2
  111. data/src/cxx_supportlib/{Utils → Algorithms}/Hasher.h +4 -4
  112. data/src/cxx_supportlib/AppLocalConfigFileUtils.h +148 -0
  113. data/src/cxx_supportlib/AppTypeDetector/CBindings.cpp +147 -0
  114. data/src/cxx_supportlib/AppTypeDetector/CBindings.h +75 -0
  115. data/src/cxx_supportlib/{AppTypes.h → AppTypeDetector/Detector.h} +92 -131
  116. data/src/cxx_supportlib/ConfigKit/README.md +90 -2
  117. data/src/cxx_supportlib/ConfigKit/Schema.h +60 -15
  118. data/src/cxx_supportlib/ConfigKit/Store.h +129 -5
  119. data/src/cxx_supportlib/Constants.h +1 -1
  120. data/src/cxx_supportlib/{Utils → DataStructures}/HashMap.h +4 -4
  121. data/src/cxx_supportlib/DataStructures/HashedStaticString.h +5 -5
  122. data/src/cxx_supportlib/DataStructures/LString.h +3 -3
  123. data/src/cxx_supportlib/{Utils → DataStructures}/StringMap.h +36 -36
  124. data/src/cxx_supportlib/FileTools/FileManip.cpp +1 -1
  125. data/src/cxx_supportlib/FileTools/PathManip.cpp +2 -2
  126. data/src/cxx_supportlib/FileTools/PathSecurityCheck.cpp +1 -1
  127. data/src/cxx_supportlib/Hooks.h +2 -2
  128. data/src/cxx_supportlib/{Utils → IOTools}/BufferedIO.h +5 -5
  129. data/src/cxx_supportlib/{Utils → IOTools}/IOUtils.cpp +4 -3
  130. data/src/cxx_supportlib/{Utils → IOTools}/IOUtils.h +3 -3
  131. data/src/cxx_supportlib/{Utils → IOTools}/MessageIO.h +7 -7
  132. data/src/cxx_supportlib/{MessageReadersWriters.h → IOTools/MessageSerialization.h} +5 -5
  133. data/src/cxx_supportlib/InstanceDirectory.h +4 -4
  134. data/src/cxx_supportlib/Integrations/LibevJsonUtils.h +3 -3
  135. data/src/cxx_supportlib/{Utils → JsonTools}/JsonUtils.h +5 -5
  136. data/src/cxx_supportlib/LoggingKit/Context.h +2 -2
  137. data/src/cxx_supportlib/LoggingKit/Implementation.cpp +3 -3
  138. data/src/cxx_supportlib/MemoryKit/mbuf.cpp +2 -2
  139. data/src/cxx_supportlib/ProcessManagement/Ruby.cpp +3 -3
  140. data/src/cxx_supportlib/ProcessManagement/Ruby.h +7 -2
  141. data/src/cxx_supportlib/ProcessManagement/Spawn.cpp +19 -12
  142. data/src/cxx_supportlib/ProcessManagement/Spawn.h +21 -2
  143. data/src/cxx_supportlib/ProcessManagement/Utils.h +10 -0
  144. data/src/cxx_supportlib/RandomGenerator.h +2 -2
  145. data/src/cxx_supportlib/ResourceLocator.h +1 -1
  146. data/src/cxx_supportlib/{Crypto.cpp → SecurityKit/Crypto.cpp} +4 -4
  147. data/src/cxx_supportlib/{Crypto.h → SecurityKit/Crypto.h} +4 -4
  148. data/src/cxx_supportlib/{Utils → SecurityKit}/MemZeroGuard.h +0 -0
  149. data/src/cxx_supportlib/ServerKit/AcceptLoadBalancer.h +2 -2
  150. data/src/cxx_supportlib/ServerKit/Channel.h +1 -1
  151. data/src/cxx_supportlib/ServerKit/ClientRef.h +17 -7
  152. data/src/cxx_supportlib/ServerKit/Context.h +2 -2
  153. data/src/cxx_supportlib/ServerKit/FileBufferedChannel.h +1 -1
  154. data/src/cxx_supportlib/ServerKit/HttpHeaderParser.h +3 -3
  155. data/src/cxx_supportlib/ServerKit/HttpHeaderParserState.h +2 -2
  156. data/src/cxx_supportlib/ServerKit/HttpRequestRef.h +17 -7
  157. data/src/cxx_supportlib/ServerKit/HttpServer.h +16 -10
  158. data/src/cxx_supportlib/ServerKit/Server.h +3 -4
  159. data/src/cxx_supportlib/{Utils → StrIntTools}/DateParsing.h +5 -5
  160. data/src/cxx_supportlib/{Utils → StrIntTools}/StrIntUtils.cpp +3 -3
  161. data/src/cxx_supportlib/{Utils → StrIntTools}/StrIntUtils.h +0 -0
  162. data/src/cxx_supportlib/{Utils → StrIntTools}/StrIntUtilsNoStrictAliasing.cpp +12 -12
  163. data/src/cxx_supportlib/{Utils → StrIntTools}/StringScanning.h +5 -5
  164. data/src/cxx_supportlib/{Utils → StrIntTools}/Template.h +30 -5
  165. data/src/cxx_supportlib/SystemTools/ContainerHelpers.h +88 -0
  166. data/src/cxx_supportlib/{Utils → SystemTools}/ProcessMetricsCollector.h +15 -12
  167. data/src/cxx_supportlib/{Utils → SystemTools}/SystemMetricsCollector.h +3 -3
  168. data/src/cxx_supportlib/{Utils → SystemTools}/SystemTime.cpp +1 -1
  169. data/src/cxx_supportlib/{Utils → SystemTools}/SystemTime.h +0 -0
  170. data/src/cxx_supportlib/SystemTools/UserDatabase.h +1 -1
  171. data/src/cxx_supportlib/Utils/CachedFileStat.hpp +3 -3
  172. data/src/cxx_supportlib/Utils/Curl.h +2 -2
  173. data/src/cxx_supportlib/Utils/FileChangeChecker.h +2 -2
  174. data/src/cxx_supportlib/Utils/MessagePassing.h +1 -1
  175. data/src/cxx_supportlib/Utils/SpeedMeter.h +2 -2
  176. data/src/cxx_supportlib/Utils/Timer.h +2 -2
  177. data/src/cxx_supportlib/Utils/VariantMap.h +3 -3
  178. data/src/cxx_supportlib/Utils.cpp +2 -2
  179. data/src/cxx_supportlib/WatchdogLauncher.h +3 -3
  180. data/src/cxx_supportlib/WebSocketCommandReverseServer.h +1 -1
  181. data/src/cxx_supportlib/WrapperRegistry/CBindings.cpp +85 -0
  182. data/src/cxx_supportlib/{Utils/MemoryBarrier.h → WrapperRegistry/CBindings.h} +30 -27
  183. data/src/cxx_supportlib/WrapperRegistry/Entry.h +112 -0
  184. data/src/cxx_supportlib/WrapperRegistry/README.md +37 -0
  185. data/src/cxx_supportlib/WrapperRegistry/Registry.h +309 -0
  186. data/src/cxx_supportlib/vendor-modified/psg_sysqueue.h +3 -0
  187. data/src/helper-scripts/download_binaries/extconf.rb +6 -2
  188. data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +32 -0
  189. data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +12 -0
  190. data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +36 -0
  191. data/src/nginx_module/Configuration.c +23 -3
  192. data/src/nginx_module/ContentHandler.c +331 -32
  193. data/src/nginx_module/ContentHandler.h +8 -3
  194. data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +10 -0
  195. data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +27 -0
  196. data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +3 -0
  197. data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +7 -0
  198. data/src/nginx_module/MainConfig/AutoGeneratedCreateFunction.c +11 -0
  199. data/src/nginx_module/MainConfig/AutoGeneratedManifestGeneration.c +23 -0
  200. data/src/nginx_module/MainConfig/AutoGeneratedStruct.h +8 -0
  201. data/src/nginx_module/config +2 -1
  202. data/src/nginx_module/ngx_http_passenger_module.c +9 -3
  203. data/src/nginx_module/ngx_http_passenger_module.h +10 -3
  204. data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +19 -0
  205. data/src/ruby_supportlib/phusion_passenger/common_library.rb +19 -16
  206. data/src/ruby_supportlib/phusion_passenger/config/agent_compiler.rb +4 -4
  207. data/src/ruby_supportlib/phusion_passenger/config/download_agent_command.rb +6 -2
  208. data/src/ruby_supportlib/phusion_passenger/config/download_nginx_engine_command.rb +6 -2
  209. data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +1 -1
  210. data/src/ruby_supportlib/phusion_passenger/message_channel.rb +2 -2
  211. data/src/ruby_supportlib/phusion_passenger/native_support.rb +7 -3
  212. data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +29 -0
  213. data/src/ruby_supportlib/phusion_passenger/packaging.rb +20 -19
  214. data/src/ruby_supportlib/phusion_passenger/platform_info/apache.rb +22 -4
  215. data/src/ruby_supportlib/phusion_passenger/platform_info/ruby.rb +33 -13
  216. data/src/ruby_supportlib/phusion_passenger/standalone/app_finder.rb +1 -0
  217. data/src/ruby_supportlib/phusion_passenger/standalone/config_options_list.rb +22 -2
  218. data/src/ruby_supportlib/phusion_passenger/standalone/start_command/builtin_engine.rb +4 -1
  219. data/src/ruby_supportlib/phusion_passenger.rb +7 -5
  220. data/src/schema_printer/SchemaPrinterMain.cpp +2 -0
  221. metadata +40 -89
  222. data/.editorconfig +0 -134
  223. data/CODE_OF_CONDUCT.md +0 -52
  224. data/dev/boost-patches/0001-Patch-boost-thread-so-that-oxt-thread-can-use-it.patch +0 -48
  225. data/dev/boost-patches/0002-Make-boost-thread_interrupted-derive-from-oxt-tracab.patch +0 -33
  226. data/dev/boost-patches/0003-Disable-a-Clang-pragma-to-prevent-warnings-on-OS-X.patch +0 -25
  227. data/dev/ci/README.md +0 -134
  228. data/dev/ci/lib/functions.sh +0 -129
  229. data/dev/ci/lib/set-container-envvars.sh +0 -53
  230. data/dev/ci/lib/setup-container.sh +0 -46
  231. data/dev/ci/run-tests-natively +0 -24
  232. data/dev/ci/run-tests-with-docker +0 -42
  233. data/dev/ci/scripts/debug-console-wrapper.sh +0 -29
  234. data/dev/ci/scripts/docker-entrypoint-stage2.sh +0 -17
  235. data/dev/ci/scripts/docker-entrypoint.sh +0 -17
  236. data/dev/ci/scripts/inituidgid +0 -17
  237. data/dev/ci/scripts/run-tests-natively-stage2.sh +0 -17
  238. data/dev/ci/scripts/setup-host-natively.sh +0 -11
  239. data/dev/ci/setup-host +0 -56
  240. data/dev/ci/tests/apache2/run +0 -6
  241. data/dev/ci/tests/apache2/setup +0 -4
  242. data/dev/ci/tests/binaries/Jenkinsfile +0 -105
  243. data/dev/ci/tests/binaries/build-linux +0 -38
  244. data/dev/ci/tests/binaries/build-macos +0 -40
  245. data/dev/ci/tests/binaries/prepare-macos +0 -38
  246. data/dev/ci/tests/binaries/test-linux +0 -45
  247. data/dev/ci/tests/binaries/test-macos +0 -38
  248. data/dev/ci/tests/cxx/run +0 -9
  249. data/dev/ci/tests/cxx/setup +0 -4
  250. data/dev/ci/tests/debian/Jenkinsfile +0 -89
  251. data/dev/ci/tests/debian/run +0 -60
  252. data/dev/ci/tests/nginx/run +0 -5
  253. data/dev/ci/tests/nginx/setup +0 -4
  254. data/dev/ci/tests/nginx-dynamic/run +0 -20
  255. data/dev/ci/tests/nginx-dynamic/setup +0 -4
  256. data/dev/ci/tests/nodejs/run +0 -4
  257. data/dev/ci/tests/nodejs/setup +0 -4
  258. data/dev/ci/tests/rpm/Jenkinsfile +0 -68
  259. data/dev/ci/tests/rpm/run +0 -63
  260. data/dev/ci/tests/ruby/run +0 -4
  261. data/dev/ci/tests/ruby/setup +0 -4
  262. data/dev/ci/tests/source-packaging/run +0 -4
  263. data/dev/ci/tests/source-packaging/setup +0 -4
  264. data/dev/ci/tests/standalone/run +0 -4
  265. data/dev/ci/tests/standalone/setup +0 -4
  266. data/dev/configkit-schemas/index.json +0 -1748
  267. data/dev/configkit-schemas/update_schema_inline_comments.rb +0 -118
  268. data/dev/rack.test/config.ru +0 -5
  269. data/dev/rack.test/public/asset.txt +0 -1
  270. data/dev/vagrant/apache_default_site.conf +0 -35
  271. data/dev/vagrant/apache_passenger.conf +0 -5
  272. data/dev/vagrant/apache_passenger.load +0 -1
  273. data/dev/vagrant/apache_ports.conf +0 -24
  274. data/dev/vagrant/apache_rack_test.conf +0 -9
  275. data/dev/vagrant/bashrc +0 -23
  276. data/dev/vagrant/nginx.conf +0 -39
  277. data/dev/vagrant/nginx_rakefile +0 -33
  278. data/dev/vagrant/nginx_start +0 -32
  279. data/dev/vagrant/provision.sh +0 -117
  280. data/dev/vagrant/sudoers.conf +0 -5
  281. data/resources/templates/error_renderer/.editorconfig +0 -19
  282. data/src/cxx_supportlib/AppTypes.cpp +0 -109
  283. data/src/cxx_supportlib/vendor-modified/SmallVector.h +0 -653
@@ -1,1748 +0,0 @@
1
- {
2
- "Passenger::Core::AdminPanelConnector::Schema" : {
3
- "auth_type" : {
4
- "default_value" : "basic",
5
- "has_default_value" : "static",
6
- "type" : "string"
7
- },
8
- "close_timeout" : {
9
- "default_value" : 10.0,
10
- "has_default_value" : "static",
11
- "type" : "float"
12
- },
13
- "connect_timeout" : {
14
- "default_value" : 30.0,
15
- "has_default_value" : "static",
16
- "type" : "float"
17
- },
18
- "data_debug" : {
19
- "default_value" : false,
20
- "has_default_value" : "static",
21
- "type" : "boolean"
22
- },
23
- "instance_dir" : {
24
- "read_only" : true,
25
- "type" : "string"
26
- },
27
- "integration_mode" : {
28
- "default_value" : "standalone",
29
- "has_default_value" : "static",
30
- "type" : "string"
31
- },
32
- "log_prefix" : {
33
- "type" : "string"
34
- },
35
- "password" : {
36
- "secret" : true,
37
- "type" : "string"
38
- },
39
- "password_file" : {
40
- "type" : "string"
41
- },
42
- "ping_interval" : {
43
- "default_value" : 30.0,
44
- "has_default_value" : "static",
45
- "type" : "float"
46
- },
47
- "ping_timeout" : {
48
- "default_value" : 30.0,
49
- "has_default_value" : "static",
50
- "type" : "float"
51
- },
52
- "proxy_password" : {
53
- "secret" : true,
54
- "type" : "string"
55
- },
56
- "proxy_timeout" : {
57
- "default_value" : 30.0,
58
- "has_default_value" : "static",
59
- "type" : "float"
60
- },
61
- "proxy_url" : {
62
- "type" : "string"
63
- },
64
- "proxy_username" : {
65
- "type" : "string"
66
- },
67
- "reconnect_timeout" : {
68
- "default_value" : 5.0,
69
- "has_default_value" : "static",
70
- "type" : "float"
71
- },
72
- "ruby" : {
73
- "default_value" : "ruby",
74
- "has_default_value" : "static",
75
- "type" : "string"
76
- },
77
- "standalone_engine" : {
78
- "has_default_value" : "dynamic",
79
- "type" : "string"
80
- },
81
- "url" : {
82
- "required" : true,
83
- "type" : "string"
84
- },
85
- "username" : {
86
- "type" : "string"
87
- },
88
- "web_server_module_version" : {
89
- "read_only" : true,
90
- "type" : "string"
91
- },
92
- "web_server_version" : {
93
- "read_only" : true,
94
- "type" : "string"
95
- },
96
- "websocketpp_debug_access" : {
97
- "default_value" : false,
98
- "has_default_value" : "static",
99
- "type" : "boolean"
100
- },
101
- "websocketpp_debug_error" : {
102
- "default_value" : false,
103
- "has_default_value" : "static",
104
- "type" : "boolean"
105
- }
106
- },
107
- "Passenger::Core::ApiServer::Schema" : {
108
- "accept_burst_count" : {
109
- "default_value" : 32,
110
- "has_default_value" : "static",
111
- "type" : "unsigned integer"
112
- },
113
- "authorizations" : {
114
- "default_value" : "[FILTERED]",
115
- "has_default_value" : "static",
116
- "secret" : true,
117
- "type" : "array"
118
- },
119
- "client_freelist_limit" : {
120
- "default_value" : 0,
121
- "has_default_value" : "static",
122
- "type" : "unsigned integer"
123
- },
124
- "instance_dir" : {
125
- "type" : "string"
126
- },
127
- "min_spare_clients" : {
128
- "default_value" : 0,
129
- "has_default_value" : "static",
130
- "type" : "unsigned integer"
131
- },
132
- "request_freelist_limit" : {
133
- "default_value" : 1024,
134
- "has_default_value" : "static",
135
- "type" : "unsigned integer"
136
- },
137
- "start_reading_after_accept" : {
138
- "default_value" : true,
139
- "has_default_value" : "static",
140
- "type" : "boolean"
141
- },
142
- "watchdog_fd_passing_password" : {
143
- "secret" : true,
144
- "type" : "string"
145
- }
146
- },
147
- "Passenger::Core::ControllerSchema" : {
148
- "accept_burst_count" : {
149
- "default_value" : 32,
150
- "has_default_value" : "static",
151
- "type" : "unsigned integer"
152
- },
153
- "benchmark_mode" : {
154
- "type" : "string"
155
- },
156
- "client_freelist_limit" : {
157
- "default_value" : 0,
158
- "has_default_value" : "static",
159
- "type" : "unsigned integer"
160
- },
161
- "default_abort_websockets_on_process_shutdown" : {
162
- "default_value" : true,
163
- "has_default_value" : "static",
164
- "type" : "boolean"
165
- },
166
- "default_app_file_descriptor_ulimit" : {
167
- "type" : "unsigned integer"
168
- },
169
- "default_environment" : {
170
- "default_value" : "production",
171
- "has_default_value" : "static",
172
- "type" : "string"
173
- },
174
- "default_force_max_concurrent_requests_per_process" : {
175
- "default_value" : -1,
176
- "has_default_value" : "static",
177
- "type" : "integer"
178
- },
179
- "default_friendly_error_pages" : {
180
- "default_value" : "auto",
181
- "has_default_value" : "static",
182
- "type" : "string"
183
- },
184
- "default_group" : {
185
- "has_default_value" : "dynamic",
186
- "type" : "string"
187
- },
188
- "default_load_shell_envvars" : {
189
- "default_value" : false,
190
- "has_default_value" : "static",
191
- "type" : "boolean"
192
- },
193
- "default_max_preloader_idle_time" : {
194
- "default_value" : 300,
195
- "has_default_value" : "static",
196
- "type" : "unsigned integer"
197
- },
198
- "default_max_request_queue_size" : {
199
- "default_value" : 100,
200
- "has_default_value" : "static",
201
- "type" : "unsigned integer"
202
- },
203
- "default_max_requests" : {
204
- "default_value" : 0,
205
- "has_default_value" : "static",
206
- "type" : "unsigned integer"
207
- },
208
- "default_meteor_app_settings" : {
209
- "type" : "string"
210
- },
211
- "default_min_instances" : {
212
- "default_value" : 1,
213
- "has_default_value" : "static",
214
- "type" : "unsigned integer"
215
- },
216
- "default_nodejs" : {
217
- "default_value" : "node",
218
- "has_default_value" : "static",
219
- "type" : "string"
220
- },
221
- "default_python" : {
222
- "default_value" : "python",
223
- "has_default_value" : "static",
224
- "type" : "string"
225
- },
226
- "default_ruby" : {
227
- "default_value" : "ruby",
228
- "has_default_value" : "static",
229
- "type" : "string"
230
- },
231
- "default_server_name" : {
232
- "required" : true,
233
- "type" : "string"
234
- },
235
- "default_server_port" : {
236
- "required" : true,
237
- "type" : "unsigned integer"
238
- },
239
- "default_spawn_method" : {
240
- "default_value" : "smart",
241
- "has_default_value" : "static",
242
- "type" : "string"
243
- },
244
- "default_sticky_sessions" : {
245
- "default_value" : false,
246
- "has_default_value" : "static",
247
- "type" : "boolean"
248
- },
249
- "default_sticky_sessions_cookie_name" : {
250
- "default_value" : "_passenger_route",
251
- "has_default_value" : "static",
252
- "type" : "string"
253
- },
254
- "default_user" : {
255
- "default_value" : "nobody",
256
- "has_default_value" : "static",
257
- "type" : "string"
258
- },
259
- "graceful_exit" : {
260
- "default_value" : true,
261
- "has_default_value" : "static",
262
- "type" : "boolean"
263
- },
264
- "integration_mode" : {
265
- "default_value" : "standalone",
266
- "has_default_value" : "static",
267
- "read_only" : true,
268
- "type" : "string"
269
- },
270
- "max_instances_per_app" : {
271
- "read_only" : true,
272
- "type" : "unsigned integer"
273
- },
274
- "min_spare_clients" : {
275
- "default_value" : 0,
276
- "has_default_value" : "static",
277
- "type" : "unsigned integer"
278
- },
279
- "multi_app" : {
280
- "default_value" : true,
281
- "has_default_value" : "static",
282
- "read_only" : true,
283
- "type" : "boolean"
284
- },
285
- "request_freelist_limit" : {
286
- "default_value" : 1024,
287
- "has_default_value" : "static",
288
- "type" : "unsigned integer"
289
- },
290
- "response_buffer_high_watermark" : {
291
- "default_value" : 134217728,
292
- "has_default_value" : "static",
293
- "type" : "unsigned integer"
294
- },
295
- "server_software" : {
296
- "default_value" : "Phusion_Passenger/5.3.4",
297
- "has_default_value" : "static",
298
- "type" : "string"
299
- },
300
- "show_version_in_header" : {
301
- "default_value" : true,
302
- "has_default_value" : "static",
303
- "type" : "boolean"
304
- },
305
- "start_reading_after_accept" : {
306
- "default_value" : true,
307
- "has_default_value" : "static",
308
- "type" : "boolean"
309
- },
310
- "stat_throttle_rate" : {
311
- "default_value" : 10,
312
- "has_default_value" : "static",
313
- "type" : "unsigned integer"
314
- },
315
- "thread_number" : {
316
- "read_only" : true,
317
- "required" : true,
318
- "type" : "unsigned integer"
319
- },
320
- "turbocaching" : {
321
- "default_value" : true,
322
- "has_default_value" : "static",
323
- "read_only" : true,
324
- "type" : "boolean"
325
- },
326
- "user_switching" : {
327
- "default_value" : true,
328
- "has_default_value" : "static",
329
- "type" : "boolean"
330
- },
331
- "vary_turbocache_by_cookie" : {
332
- "type" : "string"
333
- }
334
- },
335
- "Passenger::Core::ControllerSingleAppModeSchema" : {
336
- "app_root" : {
337
- "has_default_value" : "dynamic",
338
- "read_only" : true,
339
- "type" : "string"
340
- },
341
- "app_type" : {
342
- "read_only" : true,
343
- "required" : true,
344
- "type" : "string"
345
- },
346
- "startup_file" : {
347
- "read_only" : true,
348
- "required" : true,
349
- "type" : "string"
350
- }
351
- },
352
- "Passenger::Core::Schema" : {
353
- "admin_panel_auth_type" : {
354
- "default_value" : "basic",
355
- "has_default_value" : "static",
356
- "type" : "string"
357
- },
358
- "admin_panel_close_timeout" : {
359
- "default_value" : 10.0,
360
- "has_default_value" : "static",
361
- "type" : "float"
362
- },
363
- "admin_panel_connect_timeout" : {
364
- "default_value" : 30.0,
365
- "has_default_value" : "static",
366
- "type" : "float"
367
- },
368
- "admin_panel_data_debug" : {
369
- "default_value" : false,
370
- "has_default_value" : "static",
371
- "type" : "boolean"
372
- },
373
- "admin_panel_password" : {
374
- "secret" : true,
375
- "type" : "string"
376
- },
377
- "admin_panel_password_file" : {
378
- "type" : "string"
379
- },
380
- "admin_panel_ping_interval" : {
381
- "default_value" : 30.0,
382
- "has_default_value" : "static",
383
- "type" : "float"
384
- },
385
- "admin_panel_ping_timeout" : {
386
- "default_value" : 30.0,
387
- "has_default_value" : "static",
388
- "type" : "float"
389
- },
390
- "admin_panel_proxy_password" : {
391
- "secret" : true,
392
- "type" : "string"
393
- },
394
- "admin_panel_proxy_timeout" : {
395
- "default_value" : 30.0,
396
- "has_default_value" : "static",
397
- "type" : "float"
398
- },
399
- "admin_panel_proxy_url" : {
400
- "type" : "string"
401
- },
402
- "admin_panel_proxy_username" : {
403
- "type" : "string"
404
- },
405
- "admin_panel_reconnect_timeout" : {
406
- "default_value" : 5.0,
407
- "has_default_value" : "static",
408
- "type" : "float"
409
- },
410
- "admin_panel_url" : {
411
- "read_only" : true,
412
- "type" : "string"
413
- },
414
- "admin_panel_username" : {
415
- "type" : "string"
416
- },
417
- "admin_panel_websocketpp_debug_access" : {
418
- "default_value" : false,
419
- "has_default_value" : "static",
420
- "type" : "boolean"
421
- },
422
- "admin_panel_websocketpp_debug_error" : {
423
- "default_value" : false,
424
- "has_default_value" : "static",
425
- "type" : "boolean"
426
- },
427
- "api_server_accept_burst_count" : {
428
- "default_value" : 32,
429
- "has_default_value" : "static",
430
- "type" : "unsigned integer"
431
- },
432
- "api_server_addresses" : {
433
- "default_value" : [],
434
- "has_default_value" : "static",
435
- "read_only" : true,
436
- "type" : "array of strings"
437
- },
438
- "api_server_authorizations" : {
439
- "default_value" : "[FILTERED]",
440
- "has_default_value" : "static",
441
- "secret" : true,
442
- "type" : "array"
443
- },
444
- "api_server_client_freelist_limit" : {
445
- "default_value" : 0,
446
- "has_default_value" : "static",
447
- "type" : "unsigned integer"
448
- },
449
- "api_server_file_buffered_channel_auto_start_mover" : {
450
- "default_value" : true,
451
- "has_default_value" : "static",
452
- "type" : "boolean"
453
- },
454
- "api_server_file_buffered_channel_auto_truncate_file" : {
455
- "default_value" : true,
456
- "has_default_value" : "static",
457
- "type" : "boolean"
458
- },
459
- "api_server_file_buffered_channel_buffer_dir" : {
460
- "has_default_value" : "dynamic",
461
- "type" : "string"
462
- },
463
- "api_server_file_buffered_channel_delay_in_file_mode_switching" : {
464
- "default_value" : 0,
465
- "has_default_value" : "static",
466
- "type" : "unsigned integer"
467
- },
468
- "api_server_file_buffered_channel_max_disk_chunk_read_size" : {
469
- "default_value" : 0,
470
- "has_default_value" : "static",
471
- "type" : "unsigned integer"
472
- },
473
- "api_server_file_buffered_channel_threshold" : {
474
- "default_value" : 131072,
475
- "has_default_value" : "static",
476
- "type" : "unsigned integer"
477
- },
478
- "api_server_mbuf_block_chunk_size" : {
479
- "default_value" : 4096,
480
- "has_default_value" : "static",
481
- "read_only" : true,
482
- "type" : "unsigned integer"
483
- },
484
- "api_server_min_spare_clients" : {
485
- "default_value" : 0,
486
- "has_default_value" : "static",
487
- "type" : "unsigned integer"
488
- },
489
- "api_server_request_freelist_limit" : {
490
- "default_value" : 1024,
491
- "has_default_value" : "static",
492
- "type" : "unsigned integer"
493
- },
494
- "api_server_start_reading_after_accept" : {
495
- "default_value" : true,
496
- "has_default_value" : "static",
497
- "type" : "boolean"
498
- },
499
- "app_output_log_level" : {
500
- "default_value" : "notice",
501
- "has_default_value" : "static",
502
- "type" : "string"
503
- },
504
- "benchmark_mode" : {
505
- "type" : "string"
506
- },
507
- "config_manifest" : {
508
- "read_only" : true,
509
- "type" : "object"
510
- },
511
- "controller_accept_burst_count" : {
512
- "default_value" : 32,
513
- "has_default_value" : "static",
514
- "type" : "unsigned integer"
515
- },
516
- "controller_addresses" : {
517
- "default_value" : [ "tcp://127.0.0.1:3000" ],
518
- "has_default_value" : "static",
519
- "read_only" : true,
520
- "type" : "array of strings"
521
- },
522
- "controller_client_freelist_limit" : {
523
- "default_value" : 0,
524
- "has_default_value" : "static",
525
- "type" : "unsigned integer"
526
- },
527
- "controller_cpu_affine" : {
528
- "default_value" : false,
529
- "has_default_value" : "static",
530
- "read_only" : true,
531
- "type" : "boolean"
532
- },
533
- "controller_file_buffered_channel_auto_start_mover" : {
534
- "default_value" : true,
535
- "has_default_value" : "static",
536
- "type" : "boolean"
537
- },
538
- "controller_file_buffered_channel_auto_truncate_file" : {
539
- "default_value" : true,
540
- "has_default_value" : "static",
541
- "type" : "boolean"
542
- },
543
- "controller_file_buffered_channel_buffer_dir" : {
544
- "has_default_value" : "dynamic",
545
- "type" : "string"
546
- },
547
- "controller_file_buffered_channel_delay_in_file_mode_switching" : {
548
- "default_value" : 0,
549
- "has_default_value" : "static",
550
- "type" : "unsigned integer"
551
- },
552
- "controller_file_buffered_channel_max_disk_chunk_read_size" : {
553
- "default_value" : 0,
554
- "has_default_value" : "static",
555
- "type" : "unsigned integer"
556
- },
557
- "controller_file_buffered_channel_threshold" : {
558
- "default_value" : 131072,
559
- "has_default_value" : "static",
560
- "type" : "unsigned integer"
561
- },
562
- "controller_mbuf_block_chunk_size" : {
563
- "default_value" : 4096,
564
- "has_default_value" : "static",
565
- "read_only" : true,
566
- "type" : "unsigned integer"
567
- },
568
- "controller_min_spare_clients" : {
569
- "default_value" : 0,
570
- "has_default_value" : "static",
571
- "type" : "unsigned integer"
572
- },
573
- "controller_request_freelist_limit" : {
574
- "default_value" : 1024,
575
- "has_default_value" : "static",
576
- "type" : "unsigned integer"
577
- },
578
- "controller_secure_headers_password" : {
579
- "secret" : true,
580
- "type" : "any"
581
- },
582
- "controller_socket_backlog" : {
583
- "default_value" : 2048,
584
- "has_default_value" : "static",
585
- "read_only" : true,
586
- "type" : "unsigned integer"
587
- },
588
- "controller_start_reading_after_accept" : {
589
- "default_value" : true,
590
- "has_default_value" : "static",
591
- "type" : "boolean"
592
- },
593
- "controller_threads" : {
594
- "has_default_value" : "dynamic",
595
- "read_only" : true,
596
- "type" : "unsigned integer"
597
- },
598
- "default_abort_websockets_on_process_shutdown" : {
599
- "default_value" : true,
600
- "has_default_value" : "static",
601
- "type" : "boolean"
602
- },
603
- "default_app_file_descriptor_ulimit" : {
604
- "type" : "unsigned integer"
605
- },
606
- "default_environment" : {
607
- "default_value" : "production",
608
- "has_default_value" : "static",
609
- "type" : "string"
610
- },
611
- "default_force_max_concurrent_requests_per_process" : {
612
- "default_value" : -1,
613
- "has_default_value" : "static",
614
- "type" : "integer"
615
- },
616
- "default_friendly_error_pages" : {
617
- "default_value" : "auto",
618
- "has_default_value" : "static",
619
- "type" : "string"
620
- },
621
- "default_group" : {
622
- "has_default_value" : "dynamic",
623
- "type" : "string"
624
- },
625
- "default_load_shell_envvars" : {
626
- "default_value" : false,
627
- "has_default_value" : "static",
628
- "type" : "boolean"
629
- },
630
- "default_max_preloader_idle_time" : {
631
- "default_value" : 300,
632
- "has_default_value" : "static",
633
- "type" : "unsigned integer"
634
- },
635
- "default_max_request_queue_size" : {
636
- "default_value" : 100,
637
- "has_default_value" : "static",
638
- "type" : "unsigned integer"
639
- },
640
- "default_max_requests" : {
641
- "default_value" : 0,
642
- "has_default_value" : "static",
643
- "type" : "unsigned integer"
644
- },
645
- "default_meteor_app_settings" : {
646
- "type" : "string"
647
- },
648
- "default_min_instances" : {
649
- "default_value" : 1,
650
- "has_default_value" : "static",
651
- "type" : "unsigned integer"
652
- },
653
- "default_nodejs" : {
654
- "default_value" : "node",
655
- "has_default_value" : "static",
656
- "type" : "string"
657
- },
658
- "default_python" : {
659
- "default_value" : "python",
660
- "has_default_value" : "static",
661
- "type" : "string"
662
- },
663
- "default_ruby" : {
664
- "default_value" : "ruby",
665
- "has_default_value" : "static",
666
- "type" : "string"
667
- },
668
- "default_server_name" : {
669
- "has_default_value" : "dynamic",
670
- "type" : "string"
671
- },
672
- "default_server_port" : {
673
- "has_default_value" : "dynamic",
674
- "type" : "unsigned integer"
675
- },
676
- "default_spawn_method" : {
677
- "default_value" : "smart",
678
- "has_default_value" : "static",
679
- "type" : "string"
680
- },
681
- "default_sticky_sessions" : {
682
- "default_value" : false,
683
- "has_default_value" : "static",
684
- "type" : "boolean"
685
- },
686
- "default_sticky_sessions_cookie_name" : {
687
- "default_value" : "_passenger_route",
688
- "has_default_value" : "static",
689
- "type" : "string"
690
- },
691
- "default_user" : {
692
- "default_value" : "nobody",
693
- "has_default_value" : "static",
694
- "type" : "string"
695
- },
696
- "file_descriptor_log_target" : {
697
- "type" : "any"
698
- },
699
- "file_descriptor_ulimit" : {
700
- "default_value" : 0,
701
- "has_default_value" : "static",
702
- "read_only" : true,
703
- "type" : "unsigned integer"
704
- },
705
- "graceful_exit" : {
706
- "default_value" : true,
707
- "has_default_value" : "static",
708
- "type" : "boolean"
709
- },
710
- "instance_dir" : {
711
- "read_only" : true,
712
- "type" : "string"
713
- },
714
- "integration_mode" : {
715
- "default_value" : "standalone",
716
- "has_default_value" : "static",
717
- "type" : "string"
718
- },
719
- "log_level" : {
720
- "default_value" : "notice",
721
- "has_default_value" : "static",
722
- "type" : "string"
723
- },
724
- "log_target" : {
725
- "default_value" : {
726
- "stderr" : true
727
- },
728
- "has_default_value" : "static",
729
- "type" : "any"
730
- },
731
- "max_instances_per_app" : {
732
- "read_only" : true,
733
- "type" : "unsigned integer"
734
- },
735
- "max_pool_size" : {
736
- "default_value" : 6,
737
- "has_default_value" : "static",
738
- "type" : "unsigned integer"
739
- },
740
- "multi_app" : {
741
- "default_value" : false,
742
- "has_default_value" : "static",
743
- "read_only" : true,
744
- "type" : "boolean"
745
- },
746
- "passenger_root" : {
747
- "read_only" : true,
748
- "required" : true,
749
- "type" : "string"
750
- },
751
- "pid_file" : {
752
- "read_only" : true,
753
- "type" : "string"
754
- },
755
- "pool_idle_time" : {
756
- "default_value" : 300,
757
- "has_default_value" : "static",
758
- "type" : "unsigned integer"
759
- },
760
- "pool_selfchecks" : {
761
- "default_value" : false,
762
- "has_default_value" : "static",
763
- "type" : "boolean"
764
- },
765
- "prestart_urls" : {
766
- "default_value" : [],
767
- "has_default_value" : "static",
768
- "read_only" : true,
769
- "type" : "array of strings"
770
- },
771
- "response_buffer_high_watermark" : {
772
- "default_value" : 134217728,
773
- "has_default_value" : "static",
774
- "type" : "unsigned integer"
775
- },
776
- "security_update_checker_certificate_path" : {
777
- "type" : "string"
778
- },
779
- "security_update_checker_disabled" : {
780
- "default_value" : false,
781
- "has_default_value" : "static",
782
- "type" : "boolean"
783
- },
784
- "security_update_checker_interval" : {
785
- "default_value" : 86400,
786
- "has_default_value" : "static",
787
- "type" : "unsigned integer"
788
- },
789
- "security_update_checker_proxy_url" : {
790
- "type" : "string"
791
- },
792
- "security_update_checker_url" : {
793
- "default_value" : "https://securitycheck.phusionpassenger.com/v1/check.json",
794
- "has_default_value" : "static",
795
- "type" : "string"
796
- },
797
- "server_software" : {
798
- "default_value" : "Phusion_Passenger/5.3.4",
799
- "has_default_value" : "static",
800
- "type" : "string"
801
- },
802
- "show_version_in_header" : {
803
- "default_value" : true,
804
- "has_default_value" : "static",
805
- "type" : "boolean"
806
- },
807
- "single_app_mode_app_root" : {
808
- "has_default_value" : "dynamic",
809
- "read_only" : true,
810
- "type" : "string"
811
- },
812
- "single_app_mode_app_type" : {
813
- "read_only" : true,
814
- "type" : "string"
815
- },
816
- "single_app_mode_startup_file" : {
817
- "read_only" : true,
818
- "type" : "string"
819
- },
820
- "standalone_engine" : {
821
- "has_default_value" : "dynamic",
822
- "type" : "string"
823
- },
824
- "stat_throttle_rate" : {
825
- "default_value" : 10,
826
- "has_default_value" : "static",
827
- "type" : "unsigned integer"
828
- },
829
- "turbocaching" : {
830
- "default_value" : true,
831
- "has_default_value" : "static",
832
- "read_only" : true,
833
- "type" : "boolean"
834
- },
835
- "user_switching" : {
836
- "default_value" : true,
837
- "has_default_value" : "static",
838
- "type" : "boolean"
839
- },
840
- "vary_turbocache_by_cookie" : {
841
- "type" : "string"
842
- },
843
- "watchdog_fd_passing_password" : {
844
- "secret" : true,
845
- "type" : "string"
846
- },
847
- "web_server_module_version" : {
848
- "read_only" : true,
849
- "type" : "string"
850
- },
851
- "web_server_version" : {
852
- "read_only" : true,
853
- "type" : "string"
854
- }
855
- },
856
- "Passenger::LoggingKit::Schema" : {
857
- "app_output_log_level" : {
858
- "default_value" : "notice",
859
- "has_default_value" : "static",
860
- "type" : "string"
861
- },
862
- "buffer_logs" : {
863
- "default_value" : false,
864
- "has_default_value" : "static",
865
- "type" : "boolean"
866
- },
867
- "file_descriptor_log_target" : {
868
- "type" : "any"
869
- },
870
- "level" : {
871
- "default_value" : "notice",
872
- "has_default_value" : "static",
873
- "type" : "string"
874
- },
875
- "redirect_stderr" : {
876
- "default_value" : true,
877
- "has_default_value" : "static",
878
- "type" : "boolean"
879
- },
880
- "target" : {
881
- "default_value" : {
882
- "stderr" : true
883
- },
884
- "has_default_value" : "static",
885
- "type" : "any"
886
- }
887
- },
888
- "Passenger::SecurityUpdateChecker::Schema" : {
889
- "certificate_path" : {
890
- "type" : "string"
891
- },
892
- "disabled" : {
893
- "default_value" : false,
894
- "has_default_value" : "static",
895
- "type" : "boolean"
896
- },
897
- "interval" : {
898
- "default_value" : 86400,
899
- "has_default_value" : "static",
900
- "type" : "unsigned integer"
901
- },
902
- "proxy_url" : {
903
- "type" : "string"
904
- },
905
- "server_identifier" : {
906
- "required" : true,
907
- "type" : "string"
908
- },
909
- "url" : {
910
- "default_value" : "https://securitycheck.phusionpassenger.com/v1/check.json",
911
- "has_default_value" : "static",
912
- "type" : "string"
913
- },
914
- "web_server_version" : {
915
- "type" : "string"
916
- }
917
- },
918
- "Passenger::ServerKit::BaseServerSchema" : {
919
- "accept_burst_count" : {
920
- "default_value" : 32,
921
- "has_default_value" : "static",
922
- "type" : "unsigned integer"
923
- },
924
- "client_freelist_limit" : {
925
- "default_value" : 0,
926
- "has_default_value" : "static",
927
- "type" : "unsigned integer"
928
- },
929
- "min_spare_clients" : {
930
- "default_value" : 0,
931
- "has_default_value" : "static",
932
- "type" : "unsigned integer"
933
- },
934
- "start_reading_after_accept" : {
935
- "default_value" : true,
936
- "has_default_value" : "static",
937
- "type" : "boolean"
938
- }
939
- },
940
- "Passenger::ServerKit::HttpServerSchema" : {
941
- "accept_burst_count" : {
942
- "default_value" : 32,
943
- "has_default_value" : "static",
944
- "type" : "unsigned integer"
945
- },
946
- "client_freelist_limit" : {
947
- "default_value" : 0,
948
- "has_default_value" : "static",
949
- "type" : "unsigned integer"
950
- },
951
- "min_spare_clients" : {
952
- "default_value" : 0,
953
- "has_default_value" : "static",
954
- "type" : "unsigned integer"
955
- },
956
- "request_freelist_limit" : {
957
- "default_value" : 1024,
958
- "has_default_value" : "static",
959
- "type" : "unsigned integer"
960
- },
961
- "start_reading_after_accept" : {
962
- "default_value" : true,
963
- "has_default_value" : "static",
964
- "type" : "boolean"
965
- }
966
- },
967
- "Passenger::ServerKit::Schema" : {
968
- "file_buffered_channel_auto_start_mover" : {
969
- "default_value" : true,
970
- "has_default_value" : "static",
971
- "type" : "boolean"
972
- },
973
- "file_buffered_channel_auto_truncate_file" : {
974
- "default_value" : true,
975
- "has_default_value" : "static",
976
- "type" : "boolean"
977
- },
978
- "file_buffered_channel_buffer_dir" : {
979
- "has_default_value" : "dynamic",
980
- "type" : "string"
981
- },
982
- "file_buffered_channel_delay_in_file_mode_switching" : {
983
- "default_value" : 0,
984
- "has_default_value" : "static",
985
- "type" : "unsigned integer"
986
- },
987
- "file_buffered_channel_max_disk_chunk_read_size" : {
988
- "default_value" : 0,
989
- "has_default_value" : "static",
990
- "type" : "unsigned integer"
991
- },
992
- "file_buffered_channel_threshold" : {
993
- "default_value" : 131072,
994
- "has_default_value" : "static",
995
- "type" : "unsigned integer"
996
- },
997
- "mbuf_block_chunk_size" : {
998
- "default_value" : 4096,
999
- "has_default_value" : "static",
1000
- "read_only" : true,
1001
- "type" : "unsigned integer"
1002
- },
1003
- "secure_mode_password" : {
1004
- "secret" : true,
1005
- "type" : "string"
1006
- }
1007
- },
1008
- "Passenger::Watchdog::ApiServer::Schema" : {
1009
- "accept_burst_count" : {
1010
- "default_value" : 32,
1011
- "has_default_value" : "static",
1012
- "type" : "unsigned integer"
1013
- },
1014
- "authorizations" : {
1015
- "default_value" : "[FILTERED]",
1016
- "has_default_value" : "static",
1017
- "secret" : true,
1018
- "type" : "array"
1019
- },
1020
- "client_freelist_limit" : {
1021
- "default_value" : 0,
1022
- "has_default_value" : "static",
1023
- "type" : "unsigned integer"
1024
- },
1025
- "fd_passing_password" : {
1026
- "required" : true,
1027
- "secret" : true,
1028
- "type" : "string"
1029
- },
1030
- "min_spare_clients" : {
1031
- "default_value" : 0,
1032
- "has_default_value" : "static",
1033
- "type" : "unsigned integer"
1034
- },
1035
- "request_freelist_limit" : {
1036
- "default_value" : 1024,
1037
- "has_default_value" : "static",
1038
- "type" : "unsigned integer"
1039
- },
1040
- "start_reading_after_accept" : {
1041
- "default_value" : true,
1042
- "has_default_value" : "static",
1043
- "type" : "boolean"
1044
- }
1045
- },
1046
- "Passenger::Watchdog::Schema" : {
1047
- "admin_panel_auth_type" : {
1048
- "default_value" : "basic",
1049
- "has_default_value" : "static",
1050
- "type" : "string"
1051
- },
1052
- "admin_panel_close_timeout" : {
1053
- "default_value" : 10.0,
1054
- "has_default_value" : "static",
1055
- "type" : "float"
1056
- },
1057
- "admin_panel_connect_timeout" : {
1058
- "default_value" : 30.0,
1059
- "has_default_value" : "static",
1060
- "type" : "float"
1061
- },
1062
- "admin_panel_data_debug" : {
1063
- "default_value" : false,
1064
- "has_default_value" : "static",
1065
- "type" : "boolean"
1066
- },
1067
- "admin_panel_password" : {
1068
- "secret" : true,
1069
- "type" : "string"
1070
- },
1071
- "admin_panel_password_file" : {
1072
- "type" : "string"
1073
- },
1074
- "admin_panel_ping_interval" : {
1075
- "default_value" : 30.0,
1076
- "has_default_value" : "static",
1077
- "type" : "float"
1078
- },
1079
- "admin_panel_ping_timeout" : {
1080
- "default_value" : 30.0,
1081
- "has_default_value" : "static",
1082
- "type" : "float"
1083
- },
1084
- "admin_panel_proxy_password" : {
1085
- "secret" : true,
1086
- "type" : "string"
1087
- },
1088
- "admin_panel_proxy_timeout" : {
1089
- "default_value" : 30.0,
1090
- "has_default_value" : "static",
1091
- "type" : "float"
1092
- },
1093
- "admin_panel_proxy_url" : {
1094
- "type" : "string"
1095
- },
1096
- "admin_panel_proxy_username" : {
1097
- "type" : "string"
1098
- },
1099
- "admin_panel_reconnect_timeout" : {
1100
- "default_value" : 5.0,
1101
- "has_default_value" : "static",
1102
- "type" : "float"
1103
- },
1104
- "admin_panel_url" : {
1105
- "read_only" : true,
1106
- "type" : "string"
1107
- },
1108
- "admin_panel_username" : {
1109
- "type" : "string"
1110
- },
1111
- "admin_panel_websocketpp_debug_access" : {
1112
- "default_value" : false,
1113
- "has_default_value" : "static",
1114
- "type" : "boolean"
1115
- },
1116
- "admin_panel_websocketpp_debug_error" : {
1117
- "default_value" : false,
1118
- "has_default_value" : "static",
1119
- "type" : "boolean"
1120
- },
1121
- "app_output_log_level" : {
1122
- "default_value" : "notice",
1123
- "has_default_value" : "static",
1124
- "type" : "string"
1125
- },
1126
- "benchmark_mode" : {
1127
- "type" : "string"
1128
- },
1129
- "config_manifest" : {
1130
- "read_only" : true,
1131
- "type" : "object"
1132
- },
1133
- "controller_accept_burst_count" : {
1134
- "default_value" : 32,
1135
- "has_default_value" : "static",
1136
- "type" : "unsigned integer"
1137
- },
1138
- "controller_addresses" : {
1139
- "has_default_value" : "dynamic",
1140
- "read_only" : true,
1141
- "type" : "array of strings"
1142
- },
1143
- "controller_client_freelist_limit" : {
1144
- "default_value" : 0,
1145
- "has_default_value" : "static",
1146
- "type" : "unsigned integer"
1147
- },
1148
- "controller_cpu_affine" : {
1149
- "default_value" : false,
1150
- "has_default_value" : "static",
1151
- "read_only" : true,
1152
- "type" : "boolean"
1153
- },
1154
- "controller_file_buffered_channel_auto_start_mover" : {
1155
- "default_value" : true,
1156
- "has_default_value" : "static",
1157
- "type" : "boolean"
1158
- },
1159
- "controller_file_buffered_channel_auto_truncate_file" : {
1160
- "default_value" : true,
1161
- "has_default_value" : "static",
1162
- "type" : "boolean"
1163
- },
1164
- "controller_file_buffered_channel_buffer_dir" : {
1165
- "has_default_value" : "dynamic",
1166
- "type" : "string"
1167
- },
1168
- "controller_file_buffered_channel_delay_in_file_mode_switching" : {
1169
- "default_value" : 0,
1170
- "has_default_value" : "static",
1171
- "type" : "unsigned integer"
1172
- },
1173
- "controller_file_buffered_channel_max_disk_chunk_read_size" : {
1174
- "default_value" : 0,
1175
- "has_default_value" : "static",
1176
- "type" : "unsigned integer"
1177
- },
1178
- "controller_file_buffered_channel_threshold" : {
1179
- "default_value" : 131072,
1180
- "has_default_value" : "static",
1181
- "type" : "unsigned integer"
1182
- },
1183
- "controller_mbuf_block_chunk_size" : {
1184
- "default_value" : 4096,
1185
- "has_default_value" : "static",
1186
- "read_only" : true,
1187
- "type" : "unsigned integer"
1188
- },
1189
- "controller_min_spare_clients" : {
1190
- "default_value" : 0,
1191
- "has_default_value" : "static",
1192
- "type" : "unsigned integer"
1193
- },
1194
- "controller_pid_file" : {
1195
- "has_default_value" : "dynamic",
1196
- "read_only" : true,
1197
- "type" : "string"
1198
- },
1199
- "controller_request_freelist_limit" : {
1200
- "default_value" : 1024,
1201
- "has_default_value" : "static",
1202
- "type" : "unsigned integer"
1203
- },
1204
- "controller_secure_headers_password" : {
1205
- "has_default_value" : "dynamic",
1206
- "secret" : true,
1207
- "type" : "string"
1208
- },
1209
- "controller_socket_backlog" : {
1210
- "default_value" : 2048,
1211
- "has_default_value" : "static",
1212
- "read_only" : true,
1213
- "type" : "unsigned integer"
1214
- },
1215
- "controller_start_reading_after_accept" : {
1216
- "default_value" : true,
1217
- "has_default_value" : "static",
1218
- "type" : "boolean"
1219
- },
1220
- "controller_threads" : {
1221
- "has_default_value" : "dynamic",
1222
- "read_only" : true,
1223
- "type" : "unsigned integer"
1224
- },
1225
- "core_api_server_accept_burst_count" : {
1226
- "default_value" : 32,
1227
- "has_default_value" : "static",
1228
- "type" : "unsigned integer"
1229
- },
1230
- "core_api_server_addresses" : {
1231
- "default_value" : [],
1232
- "has_default_value" : "static",
1233
- "read_only" : true,
1234
- "type" : "array of strings"
1235
- },
1236
- "core_api_server_authorizations" : {
1237
- "default_value" : "[FILTERED]",
1238
- "has_default_value" : "static",
1239
- "secret" : true,
1240
- "type" : "array"
1241
- },
1242
- "core_api_server_client_freelist_limit" : {
1243
- "default_value" : 0,
1244
- "has_default_value" : "static",
1245
- "type" : "unsigned integer"
1246
- },
1247
- "core_api_server_file_buffered_channel_auto_start_mover" : {
1248
- "default_value" : true,
1249
- "has_default_value" : "static",
1250
- "type" : "boolean"
1251
- },
1252
- "core_api_server_file_buffered_channel_auto_truncate_file" : {
1253
- "default_value" : true,
1254
- "has_default_value" : "static",
1255
- "type" : "boolean"
1256
- },
1257
- "core_api_server_file_buffered_channel_buffer_dir" : {
1258
- "has_default_value" : "dynamic",
1259
- "type" : "string"
1260
- },
1261
- "core_api_server_file_buffered_channel_delay_in_file_mode_switching" : {
1262
- "default_value" : 0,
1263
- "has_default_value" : "static",
1264
- "type" : "unsigned integer"
1265
- },
1266
- "core_api_server_file_buffered_channel_max_disk_chunk_read_size" : {
1267
- "default_value" : 0,
1268
- "has_default_value" : "static",
1269
- "type" : "unsigned integer"
1270
- },
1271
- "core_api_server_file_buffered_channel_threshold" : {
1272
- "default_value" : 131072,
1273
- "has_default_value" : "static",
1274
- "type" : "unsigned integer"
1275
- },
1276
- "core_api_server_mbuf_block_chunk_size" : {
1277
- "default_value" : 4096,
1278
- "has_default_value" : "static",
1279
- "read_only" : true,
1280
- "type" : "unsigned integer"
1281
- },
1282
- "core_api_server_min_spare_clients" : {
1283
- "default_value" : 0,
1284
- "has_default_value" : "static",
1285
- "type" : "unsigned integer"
1286
- },
1287
- "core_api_server_request_freelist_limit" : {
1288
- "default_value" : 1024,
1289
- "has_default_value" : "static",
1290
- "type" : "unsigned integer"
1291
- },
1292
- "core_api_server_start_reading_after_accept" : {
1293
- "default_value" : true,
1294
- "has_default_value" : "static",
1295
- "type" : "boolean"
1296
- },
1297
- "core_file_descriptor_ulimit" : {
1298
- "default_value" : 0,
1299
- "has_default_value" : "static",
1300
- "read_only" : true,
1301
- "type" : "unsigned integer"
1302
- },
1303
- "core_pid_file" : {
1304
- "read_only" : true,
1305
- "type" : "string"
1306
- },
1307
- "daemonize" : {
1308
- "default_value" : false,
1309
- "has_default_value" : "static",
1310
- "type" : "boolean"
1311
- },
1312
- "default_abort_websockets_on_process_shutdown" : {
1313
- "default_value" : true,
1314
- "has_default_value" : "static",
1315
- "type" : "boolean"
1316
- },
1317
- "default_app_file_descriptor_ulimit" : {
1318
- "type" : "unsigned integer"
1319
- },
1320
- "default_environment" : {
1321
- "default_value" : "production",
1322
- "has_default_value" : "static",
1323
- "type" : "string"
1324
- },
1325
- "default_force_max_concurrent_requests_per_process" : {
1326
- "default_value" : -1,
1327
- "has_default_value" : "static",
1328
- "type" : "integer"
1329
- },
1330
- "default_friendly_error_pages" : {
1331
- "default_value" : "auto",
1332
- "has_default_value" : "static",
1333
- "type" : "string"
1334
- },
1335
- "default_group" : {
1336
- "has_default_value" : "dynamic",
1337
- "type" : "string"
1338
- },
1339
- "default_load_shell_envvars" : {
1340
- "default_value" : false,
1341
- "has_default_value" : "static",
1342
- "type" : "boolean"
1343
- },
1344
- "default_max_preloader_idle_time" : {
1345
- "default_value" : 300,
1346
- "has_default_value" : "static",
1347
- "type" : "unsigned integer"
1348
- },
1349
- "default_max_request_queue_size" : {
1350
- "default_value" : 100,
1351
- "has_default_value" : "static",
1352
- "type" : "unsigned integer"
1353
- },
1354
- "default_max_requests" : {
1355
- "default_value" : 0,
1356
- "has_default_value" : "static",
1357
- "type" : "unsigned integer"
1358
- },
1359
- "default_meteor_app_settings" : {
1360
- "type" : "string"
1361
- },
1362
- "default_min_instances" : {
1363
- "default_value" : 1,
1364
- "has_default_value" : "static",
1365
- "type" : "unsigned integer"
1366
- },
1367
- "default_nodejs" : {
1368
- "default_value" : "node",
1369
- "has_default_value" : "static",
1370
- "type" : "string"
1371
- },
1372
- "default_python" : {
1373
- "default_value" : "python",
1374
- "has_default_value" : "static",
1375
- "type" : "string"
1376
- },
1377
- "default_ruby" : {
1378
- "default_value" : "ruby",
1379
- "has_default_value" : "static",
1380
- "type" : "string"
1381
- },
1382
- "default_server_name" : {
1383
- "has_default_value" : "dynamic",
1384
- "type" : "string"
1385
- },
1386
- "default_server_port" : {
1387
- "has_default_value" : "dynamic",
1388
- "type" : "unsigned integer"
1389
- },
1390
- "default_spawn_method" : {
1391
- "default_value" : "smart",
1392
- "has_default_value" : "static",
1393
- "type" : "string"
1394
- },
1395
- "default_sticky_sessions" : {
1396
- "default_value" : false,
1397
- "has_default_value" : "static",
1398
- "type" : "boolean"
1399
- },
1400
- "default_sticky_sessions_cookie_name" : {
1401
- "default_value" : "_passenger_route",
1402
- "has_default_value" : "static",
1403
- "type" : "string"
1404
- },
1405
- "default_user" : {
1406
- "default_value" : "nobody",
1407
- "has_default_value" : "static",
1408
- "type" : "string"
1409
- },
1410
- "file_descriptor_log_target" : {
1411
- "type" : "any"
1412
- },
1413
- "graceful_exit" : {
1414
- "default_value" : true,
1415
- "has_default_value" : "static",
1416
- "type" : "boolean"
1417
- },
1418
- "hook_after_watchdog_initialization" : {
1419
- "type" : "string"
1420
- },
1421
- "hook_after_watchdog_shutdown" : {
1422
- "type" : "string"
1423
- },
1424
- "hook_before_watchdog_initialization" : {
1425
- "type" : "string"
1426
- },
1427
- "hook_before_watchdog_shutdown" : {
1428
- "type" : "string"
1429
- },
1430
- "instance_registry_dir" : {
1431
- "has_default_value" : "dynamic",
1432
- "read_only" : true,
1433
- "type" : "string"
1434
- },
1435
- "integration_mode" : {
1436
- "default_value" : "standalone",
1437
- "has_default_value" : "static",
1438
- "type" : "string"
1439
- },
1440
- "log_level" : {
1441
- "default_value" : "notice",
1442
- "has_default_value" : "static",
1443
- "type" : "string"
1444
- },
1445
- "log_target" : {
1446
- "default_value" : {
1447
- "stderr" : true
1448
- },
1449
- "has_default_value" : "static",
1450
- "type" : "any"
1451
- },
1452
- "max_instances_per_app" : {
1453
- "read_only" : true,
1454
- "type" : "unsigned integer"
1455
- },
1456
- "max_pool_size" : {
1457
- "default_value" : 6,
1458
- "has_default_value" : "static",
1459
- "type" : "unsigned integer"
1460
- },
1461
- "multi_app" : {
1462
- "default_value" : false,
1463
- "has_default_value" : "static",
1464
- "read_only" : true,
1465
- "type" : "boolean"
1466
- },
1467
- "passenger_root" : {
1468
- "read_only" : true,
1469
- "required" : true,
1470
- "type" : "string"
1471
- },
1472
- "pidfiles_to_delete_on_exit" : {
1473
- "default_value" : [],
1474
- "has_default_value" : "static",
1475
- "type" : "array of strings"
1476
- },
1477
- "pool_idle_time" : {
1478
- "default_value" : 300,
1479
- "has_default_value" : "static",
1480
- "type" : "unsigned integer"
1481
- },
1482
- "pool_selfchecks" : {
1483
- "default_value" : false,
1484
- "has_default_value" : "static",
1485
- "type" : "boolean"
1486
- },
1487
- "prestart_urls" : {
1488
- "default_value" : [],
1489
- "has_default_value" : "static",
1490
- "read_only" : true,
1491
- "type" : "array of strings"
1492
- },
1493
- "response_buffer_high_watermark" : {
1494
- "default_value" : 134217728,
1495
- "has_default_value" : "static",
1496
- "type" : "unsigned integer"
1497
- },
1498
- "security_update_checker_certificate_path" : {
1499
- "type" : "string"
1500
- },
1501
- "security_update_checker_disabled" : {
1502
- "default_value" : false,
1503
- "has_default_value" : "static",
1504
- "type" : "boolean"
1505
- },
1506
- "security_update_checker_interval" : {
1507
- "default_value" : 86400,
1508
- "has_default_value" : "static",
1509
- "type" : "unsigned integer"
1510
- },
1511
- "security_update_checker_proxy_url" : {
1512
- "type" : "string"
1513
- },
1514
- "security_update_checker_url" : {
1515
- "default_value" : "https://securitycheck.phusionpassenger.com/v1/check.json",
1516
- "has_default_value" : "static",
1517
- "type" : "string"
1518
- },
1519
- "server_software" : {
1520
- "default_value" : "Phusion_Passenger/5.3.4",
1521
- "has_default_value" : "static",
1522
- "type" : "string"
1523
- },
1524
- "setsid" : {
1525
- "default_value" : false,
1526
- "has_default_value" : "static",
1527
- "type" : "boolean"
1528
- },
1529
- "show_version_in_header" : {
1530
- "default_value" : true,
1531
- "has_default_value" : "static",
1532
- "type" : "boolean"
1533
- },
1534
- "single_app_mode_app_root" : {
1535
- "has_default_value" : "dynamic",
1536
- "read_only" : true,
1537
- "type" : "string"
1538
- },
1539
- "single_app_mode_app_type" : {
1540
- "read_only" : true,
1541
- "type" : "string"
1542
- },
1543
- "single_app_mode_startup_file" : {
1544
- "read_only" : true,
1545
- "type" : "string"
1546
- },
1547
- "standalone_engine" : {
1548
- "has_default_value" : "dynamic",
1549
- "type" : "string"
1550
- },
1551
- "startup_report_file" : {
1552
- "type" : "string"
1553
- },
1554
- "stat_throttle_rate" : {
1555
- "default_value" : 10,
1556
- "has_default_value" : "static",
1557
- "type" : "unsigned integer"
1558
- },
1559
- "turbocaching" : {
1560
- "default_value" : true,
1561
- "has_default_value" : "static",
1562
- "read_only" : true,
1563
- "type" : "boolean"
1564
- },
1565
- "user" : {
1566
- "has_default_value" : "dynamic",
1567
- "read_only" : true,
1568
- "type" : "string"
1569
- },
1570
- "user_switching" : {
1571
- "default_value" : true,
1572
- "has_default_value" : "static",
1573
- "type" : "boolean"
1574
- },
1575
- "vary_turbocache_by_cookie" : {
1576
- "type" : "string"
1577
- },
1578
- "watchdog_api_server_accept_burst_count" : {
1579
- "default_value" : 32,
1580
- "has_default_value" : "static",
1581
- "type" : "unsigned integer"
1582
- },
1583
- "watchdog_api_server_addresses" : {
1584
- "default_value" : [],
1585
- "has_default_value" : "static",
1586
- "read_only" : true,
1587
- "type" : "array of strings"
1588
- },
1589
- "watchdog_api_server_authorizations" : {
1590
- "default_value" : "[FILTERED]",
1591
- "has_default_value" : "static",
1592
- "secret" : true,
1593
- "type" : "array"
1594
- },
1595
- "watchdog_api_server_client_freelist_limit" : {
1596
- "default_value" : 0,
1597
- "has_default_value" : "static",
1598
- "type" : "unsigned integer"
1599
- },
1600
- "watchdog_api_server_file_buffered_channel_auto_start_mover" : {
1601
- "default_value" : true,
1602
- "has_default_value" : "static",
1603
- "type" : "boolean"
1604
- },
1605
- "watchdog_api_server_file_buffered_channel_auto_truncate_file" : {
1606
- "default_value" : true,
1607
- "has_default_value" : "static",
1608
- "type" : "boolean"
1609
- },
1610
- "watchdog_api_server_file_buffered_channel_buffer_dir" : {
1611
- "has_default_value" : "dynamic",
1612
- "type" : "string"
1613
- },
1614
- "watchdog_api_server_file_buffered_channel_delay_in_file_mode_switching" : {
1615
- "default_value" : 0,
1616
- "has_default_value" : "static",
1617
- "type" : "unsigned integer"
1618
- },
1619
- "watchdog_api_server_file_buffered_channel_max_disk_chunk_read_size" : {
1620
- "default_value" : 0,
1621
- "has_default_value" : "static",
1622
- "type" : "unsigned integer"
1623
- },
1624
- "watchdog_api_server_file_buffered_channel_threshold" : {
1625
- "default_value" : 131072,
1626
- "has_default_value" : "static",
1627
- "type" : "unsigned integer"
1628
- },
1629
- "watchdog_api_server_mbuf_block_chunk_size" : {
1630
- "default_value" : 4096,
1631
- "has_default_value" : "static",
1632
- "read_only" : true,
1633
- "type" : "unsigned integer"
1634
- },
1635
- "watchdog_api_server_min_spare_clients" : {
1636
- "default_value" : 0,
1637
- "has_default_value" : "static",
1638
- "type" : "unsigned integer"
1639
- },
1640
- "watchdog_api_server_request_freelist_limit" : {
1641
- "default_value" : 1024,
1642
- "has_default_value" : "static",
1643
- "type" : "unsigned integer"
1644
- },
1645
- "watchdog_api_server_start_reading_after_accept" : {
1646
- "default_value" : true,
1647
- "has_default_value" : "static",
1648
- "type" : "boolean"
1649
- },
1650
- "watchdog_pid_file" : {
1651
- "read_only" : true,
1652
- "type" : "string"
1653
- },
1654
- "watchdog_pid_file_autodelete" : {
1655
- "default_value" : true,
1656
- "has_default_value" : "static",
1657
- "type" : "boolean"
1658
- },
1659
- "web_server_module_version" : {
1660
- "read_only" : true,
1661
- "type" : "string"
1662
- },
1663
- "web_server_version" : {
1664
- "read_only" : true,
1665
- "type" : "string"
1666
- }
1667
- },
1668
- "Passenger::WebSocketCommandReverseServer::Schema" : {
1669
- "auth_type" : {
1670
- "default_value" : "basic",
1671
- "has_default_value" : "static",
1672
- "type" : "string"
1673
- },
1674
- "close_timeout" : {
1675
- "default_value" : 10.0,
1676
- "has_default_value" : "static",
1677
- "type" : "float"
1678
- },
1679
- "connect_timeout" : {
1680
- "default_value" : 30.0,
1681
- "has_default_value" : "static",
1682
- "type" : "float"
1683
- },
1684
- "data_debug" : {
1685
- "default_value" : false,
1686
- "has_default_value" : "static",
1687
- "type" : "boolean"
1688
- },
1689
- "log_prefix" : {
1690
- "type" : "string"
1691
- },
1692
- "password" : {
1693
- "secret" : true,
1694
- "type" : "string"
1695
- },
1696
- "password_file" : {
1697
- "type" : "string"
1698
- },
1699
- "ping_interval" : {
1700
- "default_value" : 30.0,
1701
- "has_default_value" : "static",
1702
- "type" : "float"
1703
- },
1704
- "ping_timeout" : {
1705
- "default_value" : 30.0,
1706
- "has_default_value" : "static",
1707
- "type" : "float"
1708
- },
1709
- "proxy_password" : {
1710
- "secret" : true,
1711
- "type" : "string"
1712
- },
1713
- "proxy_timeout" : {
1714
- "default_value" : 30.0,
1715
- "has_default_value" : "static",
1716
- "type" : "float"
1717
- },
1718
- "proxy_url" : {
1719
- "type" : "string"
1720
- },
1721
- "proxy_username" : {
1722
- "type" : "string"
1723
- },
1724
- "reconnect_timeout" : {
1725
- "default_value" : 5.0,
1726
- "has_default_value" : "static",
1727
- "type" : "float"
1728
- },
1729
- "url" : {
1730
- "required" : true,
1731
- "type" : "string"
1732
- },
1733
- "username" : {
1734
- "type" : "string"
1735
- },
1736
- "websocketpp_debug_access" : {
1737
- "default_value" : false,
1738
- "has_default_value" : "static",
1739
- "type" : "boolean"
1740
- },
1741
- "websocketpp_debug_error" : {
1742
- "default_value" : false,
1743
- "has_default_value" : "static",
1744
- "type" : "boolean"
1745
- }
1746
- }
1747
- }
1748
-