passenger 5.0.4 → 5.0.5

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 (550) hide show
  1. checksums.yaml +8 -8
  2. checksums.yaml.gz.asc +7 -7
  3. data.tar.gz.asc +7 -7
  4. data/.editorconfig +10 -0
  5. data/CHANGELOG +21 -0
  6. data/build/agents.rb +2 -2
  7. data/build/apache2.rb +6 -5
  8. data/build/common_library.rb +22 -7
  9. data/build/cxx_tests.rb +0 -3
  10. data/build/misc.rb +1 -1
  11. data/dev/parse_file_descriptor_log +119 -0
  12. data/doc/CloudLicensingConfiguration.html +387 -0
  13. data/doc/Design and Architecture.html +2430 -0
  14. data/doc/Packaging.html +488 -0
  15. data/doc/Security of user switching support.html +1833 -0
  16. data/doc/ServerOptimizationGuide.html +659 -0
  17. data/doc/ServerOptimizationGuide.txt.md +8 -0
  18. data/doc/Users guide Apache.html +9116 -0
  19. data/doc/Users guide Apache.idmap.txt +6 -2
  20. data/doc/Users guide Apache.txt +26 -7
  21. data/doc/Users guide Nginx.html +9025 -0
  22. data/doc/Users guide Nginx.idmap.txt +7 -3
  23. data/doc/Users guide Nginx.txt +29 -6
  24. data/doc/Users guide Standalone.html +3983 -0
  25. data/doc/Users guide.html +1748 -0
  26. data/doc/users_guide_snippets/installation.txt +4 -4
  27. data/ext/apache2/Configuration.cpp +16 -5
  28. data/ext/apache2/Configuration.hpp +4 -2
  29. data/ext/apache2/Hooks.cpp +44 -19
  30. data/ext/boost/libs/thread/src/pthread/once.cpp +2 -0
  31. data/ext/boost/libs/thread/src/pthread/once_atomic.cpp +6 -0
  32. data/ext/common/AgentsStarter.h +3 -2
  33. data/ext/common/ApplicationPool2/DirectSpawner.h +14 -4
  34. data/ext/common/ApplicationPool2/DummySpawner.h +12 -7
  35. data/ext/common/ApplicationPool2/Implementation.cpp +1 -1
  36. data/ext/common/ApplicationPool2/Process.h +2 -1
  37. data/ext/common/ApplicationPool2/Session.h +6 -6
  38. data/ext/common/ApplicationPool2/SmartSpawner.h +19 -4
  39. data/ext/common/ApplicationPool2/Socket.h +59 -27
  40. data/ext/common/ApplicationPool2/Spawner.h +2 -2
  41. data/ext/common/BackgroundEventLoop.cpp +6 -1
  42. data/ext/common/Constants.h +1 -1
  43. data/ext/common/EventedClient.h +1 -1
  44. data/ext/common/EventedServer.h +2 -2
  45. data/ext/common/FileDescriptor.h +25 -6
  46. data/ext/common/Logging.cpp +107 -52
  47. data/ext/common/Logging.h +146 -19
  48. data/ext/common/MessageClient.h +2 -2
  49. data/ext/common/MessageServer.h +3 -2
  50. data/ext/common/RandomGenerator.h +8 -7
  51. data/ext/common/SafeLibev.h +5 -1
  52. data/ext/common/ServerKit/AcceptLoadBalancer.h +9 -4
  53. data/ext/common/ServerKit/FdSinkChannel.h +5 -2
  54. data/ext/common/ServerKit/FdSourceChannel.h +5 -2
  55. data/ext/common/ServerKit/FileBufferedChannel.h +2 -0
  56. data/ext/common/ServerKit/FileBufferedFdSinkChannel.h +7 -2
  57. data/ext/common/ServerKit/HttpServer.h +6 -0
  58. data/ext/common/ServerKit/Server.h +40 -3
  59. data/ext/common/StaticString.h +20 -0
  60. data/ext/common/UnionStation/Connection.h +3 -1
  61. data/ext/common/UnionStation/Core.h +6 -4
  62. data/ext/common/Utils.cpp +4 -3
  63. data/ext/common/Utils/DateParsing.h +19 -5
  64. data/ext/common/Utils/FastStringStream.h +183 -0
  65. data/ext/common/Utils/IOUtils.cpp +47 -28
  66. data/ext/common/Utils/IOUtils.h +56 -12
  67. data/ext/common/Utils/MessagePassing.h +3 -3
  68. data/ext/common/Utils/ProcessMetricsCollector.h +2 -2
  69. data/ext/common/Utils/ScopeGuard.h +16 -5
  70. data/ext/common/Utils/SpeedMeter.h +2 -2
  71. data/ext/common/Utils/StrIntUtils.cpp +6 -6
  72. data/ext/common/Utils/StrIntUtils.h +2 -1
  73. data/ext/common/agents/Base.cpp +56 -4
  74. data/ext/common/agents/Base.h +2 -1
  75. data/ext/common/agents/HelperAgent/AdminServer.h +122 -11
  76. data/ext/common/agents/HelperAgent/Main.cpp +16 -5
  77. data/ext/common/agents/HelperAgent/OptionParser.h +7 -1
  78. data/ext/common/agents/HelperAgent/RequestHandler.h +1 -1
  79. data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +10 -1
  80. data/ext/common/agents/HelperAgent/RequestHandler/Request.h +8 -0
  81. data/ext/common/agents/HelperAgent/RequestHandler/TurboCaching.h +4 -3
  82. data/ext/common/agents/LoggingAgent/AdminServer.h +57 -11
  83. data/ext/common/agents/LoggingAgent/LoggingServer.h +3 -3
  84. data/ext/common/agents/LoggingAgent/Main.cpp +11 -3
  85. data/ext/common/agents/Watchdog/AdminServer.h +53 -11
  86. data/ext/common/agents/Watchdog/AgentWatcher.cpp +3 -3
  87. data/ext/common/agents/Watchdog/Main.cpp +13 -6
  88. data/ext/libeio/ecb.h +1 -1
  89. data/ext/libev/ev.c +13 -1
  90. data/ext/libev/ev.h +3 -0
  91. data/ext/nginx/Configuration.c +28 -6
  92. data/ext/nginx/Configuration.h +2 -1
  93. data/ext/nginx/ngx_http_passenger_module.c +5 -4
  94. data/ext/oxt/dynamic_thread_group.hpp +38 -5
  95. data/lib/phusion_passenger.rb +1 -1
  96. data/lib/phusion_passenger/common_library.rb +9 -5
  97. data/lib/phusion_passenger/config/reopen_logs_command.rb +2 -2
  98. data/lib/phusion_passenger/packaging.rb +23 -37
  99. data/passenger.gemspec +21 -21
  100. metadata +4 -453
  101. metadata.gz.asc +7 -7
  102. data/.gitignore +0 -68
  103. data/.travis.yml +0 -16
  104. data/Gemfile +0 -17
  105. data/Gemfile.lock +0 -39
  106. data/Vagrantfile +0 -54
  107. data/debian.template/README.Debian +0 -15
  108. data/debian.template/changelog +0 -316
  109. data/debian.template/compat +0 -1
  110. data/debian.template/control.erb +0 -91
  111. data/debian.template/copyright +0 -385
  112. data/debian.template/libapache2-mod-passenger.install +0 -3
  113. data/debian.template/libapache2-mod-passenger.postinst +0 -36
  114. data/debian.template/libapache2-mod-passenger.prerm +0 -15
  115. data/debian.template/locations.ini.erb +0 -14
  116. data/debian.template/passenger-dev.install.erb +0 -3
  117. data/debian.template/passenger-doc.install.erb +0 -2
  118. data/debian.template/passenger.conf +0 -6
  119. data/debian.template/passenger.docs +0 -4
  120. data/debian.template/passenger.install.erb +0 -14
  121. data/debian.template/passenger.load +0 -3
  122. data/debian.template/passenger.manpages +0 -3
  123. data/debian.template/patches/series +0 -0
  124. data/debian.template/rules.erb +0 -76
  125. data/debian.template/source/format +0 -1
  126. data/ext/common/EventedBufferedInput.h +0 -458
  127. data/packaging/rpm/LICENSE.txt +0 -19
  128. data/packaging/rpm/Makefile +0 -13
  129. data/packaging/rpm/README.md +0 -41
  130. data/packaging/rpm/Vagrantfile +0 -38
  131. data/packaging/rpm/Vagrantfile.centos +0 -30
  132. data/packaging/rpm/build +0 -170
  133. data/packaging/rpm/create_project +0 -41
  134. data/packaging/rpm/git_update +0 -88
  135. data/packaging/rpm/image/Dockerfile +0 -37
  136. data/packaging/rpm/image/Gemfile +0 -3
  137. data/packaging/rpm/image/Gemfile.lock +0 -12
  138. data/packaging/rpm/image/RPM-GPG-KEY-amazon-ga +0 -19
  139. data/packaging/rpm/image/amazon2014-i386.cfg +0 -96
  140. data/packaging/rpm/image/amazon2014-x86_64.cfg +0 -96
  141. data/packaging/rpm/image/site-defaults.cfg +0 -168
  142. data/packaging/rpm/internal/build_tasks.rb +0 -238
  143. data/packaging/rpm/internal/dummygpg +0 -11
  144. data/packaging/rpm/internal/exec_build +0 -42
  145. data/packaging/rpm/internal/get_distro_arch +0 -14
  146. data/packaging/rpm/internal/get_distro_id +0 -10
  147. data/packaging/rpm/internal/git_update +0 -27
  148. data/packaging/rpm/internal/inituidgid +0 -17
  149. data/packaging/rpm/internal/my_init +0 -344
  150. data/packaging/rpm/internal/python27 +0 -3
  151. data/packaging/rpm/internal/repo_update +0 -46
  152. data/packaging/rpm/internal/setuser +0 -26
  153. data/packaging/rpm/internal/tracking_helper +0 -40
  154. data/packaging/rpm/jenkins_release +0 -99
  155. data/packaging/rpm/lib/build_tasks_support.rb +0 -402
  156. data/packaging/rpm/lib/preprocessor.rb +0 -341
  157. data/packaging/rpm/nginx_spec/404.html +0 -119
  158. data/packaging/rpm/nginx_spec/50x.html +0 -119
  159. data/packaging/rpm/nginx_spec/index.html +0 -116
  160. data/packaging/rpm/nginx_spec/nginx-auto-cc-gcc.patch +0 -13
  161. data/packaging/rpm/nginx_spec/nginx-logo.png +0 -0
  162. data/packaging/rpm/nginx_spec/nginx-upgrade +0 -13
  163. data/packaging/rpm/nginx_spec/nginx-upgrade.8 +0 -151
  164. data/packaging/rpm/nginx_spec/nginx.conf +0 -131
  165. data/packaging/rpm/nginx_spec/nginx.init +0 -144
  166. data/packaging/rpm/nginx_spec/nginx.logrotate +0 -13
  167. data/packaging/rpm/nginx_spec/nginx.service +0 -15
  168. data/packaging/rpm/nginx_spec/nginx.spec.template +0 -560
  169. data/packaging/rpm/nginx_spec/nginx.sysconfig +0 -4
  170. data/packaging/rpm/nginx_spec/passenger.conf +0 -9
  171. data/packaging/rpm/nginx_spec/poweredby.png +0 -0
  172. data/packaging/rpm/passenger_spec/apache-passenger.conf.in +0 -26
  173. data/packaging/rpm/passenger_spec/config.json +0 -30
  174. data/packaging/rpm/passenger_spec/passenger.logrotate +0 -7
  175. data/packaging/rpm/passenger_spec/passenger.spec.template +0 -478
  176. data/packaging/rpm/passenger_spec/passenger_dynamic_thread_group.patch +0 -16
  177. data/packaging/rpm/passenger_spec/passenger_tests_default_config_example.patch +0 -44
  178. data/packaging/rpm/passenger_spec/rubygem-passenger-4.0.18-GLIBC_HAVE_LONG_LONG.patch +0 -21
  179. data/packaging/rpm/repo_update +0 -114
  180. data/packaging/rpm/setup-system +0 -61
  181. data/packaging/rpm/shell +0 -10
  182. data/test/.rspec +0 -4
  183. data/test/config.json.example +0 -42
  184. data/test/config.json.rpm-automation +0 -15
  185. data/test/config.json.travis +0 -15
  186. data/test/config.json.vagrant +0 -30
  187. data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +0 -124
  188. data/test/cxx/ApplicationPool2/OptionsTest.cpp +0 -30
  189. data/test/cxx/ApplicationPool2/PoolTest.cpp +0 -2062
  190. data/test/cxx/ApplicationPool2/ProcessTest.cpp +0 -130
  191. data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +0 -243
  192. data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +0 -823
  193. data/test/cxx/BufferedIOTest.cpp +0 -364
  194. data/test/cxx/CachedFileStatTest.cpp +0 -402
  195. data/test/cxx/CxxTestMain.cpp +0 -181
  196. data/test/cxx/DataStructures/LStringTest.cpp +0 -275
  197. data/test/cxx/DataStructures/StringKeyTableTest.cpp +0 -199
  198. data/test/cxx/DateParsingTest.cpp +0 -75
  199. data/test/cxx/DechunkerTest.cpp +0 -250
  200. data/test/cxx/EventedBufferedInputTest.cpp +0 -758
  201. data/test/cxx/EventedClientTest.cpp +0 -523
  202. data/test/cxx/FileChangeCheckerTest.cpp +0 -331
  203. data/test/cxx/FileDescriptorTest.cpp +0 -69
  204. data/test/cxx/FilterSupportTest.cpp +0 -433
  205. data/test/cxx/IOUtilsTest.cpp +0 -861
  206. data/test/cxx/MemoryKit/MbufTest.cpp +0 -213
  207. data/test/cxx/MessageIOTest.cpp +0 -360
  208. data/test/cxx/MessagePassingTest.cpp +0 -81
  209. data/test/cxx/MessageReadersWritersTest.cpp +0 -576
  210. data/test/cxx/MessageServerTest.cpp +0 -393
  211. data/test/cxx/ProcessMetricsCollectorTest.cpp +0 -123
  212. data/test/cxx/RequestHandlerTest.cpp +0 -1463
  213. data/test/cxx/ResponseCacheTest.cpp +0 -322
  214. data/test/cxx/ServerKit/ChannelTest.cpp +0 -1467
  215. data/test/cxx/ServerKit/CookieUtilsTest.cpp +0 -274
  216. data/test/cxx/ServerKit/FileBufferedChannelTest.cpp +0 -992
  217. data/test/cxx/ServerKit/HeaderTableTest.cpp +0 -177
  218. data/test/cxx/ServerKit/HttpServerTest.cpp +0 -1580
  219. data/test/cxx/ServerKit/ServerTest.cpp +0 -408
  220. data/test/cxx/StaticStringTest.cpp +0 -220
  221. data/test/cxx/StringMapTest.cpp +0 -131
  222. data/test/cxx/SystemTimeTest.cpp +0 -37
  223. data/test/cxx/TemplateTest.cpp +0 -118
  224. data/test/cxx/TestSupport.cpp +0 -207
  225. data/test/cxx/TestSupport.h +0 -333
  226. data/test/cxx/UnionStationTest.cpp +0 -741
  227. data/test/cxx/Utils/StrIntUtilsTest.cpp +0 -39
  228. data/test/cxx/UtilsTest.cpp +0 -672
  229. data/test/cxx/VariantMapTest.cpp +0 -191
  230. data/test/gdbinit.example +0 -34
  231. data/test/integration_tests/apache2_tests.rb +0 -585
  232. data/test/integration_tests/downloaded_binaries_tests.rb +0 -185
  233. data/test/integration_tests/native_packaging_spec.rb +0 -368
  234. data/test/integration_tests/nginx_tests.rb +0 -402
  235. data/test/integration_tests/shared/example_webapp_tests.rb +0 -289
  236. data/test/integration_tests/source_packaging_test.rb +0 -201
  237. data/test/integration_tests/spec_helper.rb +0 -22
  238. data/test/integration_tests/standalone_tests.rb +0 -392
  239. data/test/node/line_reader_spec.js +0 -338
  240. data/test/node/spec_helper.js +0 -65
  241. data/test/oxt/backtrace_test.cpp +0 -88
  242. data/test/oxt/counter.hpp +0 -55
  243. data/test/oxt/dynamic_thread_group_test.cpp +0 -131
  244. data/test/oxt/oxt_test_main.cpp +0 -27
  245. data/test/oxt/spin_lock_test.cpp +0 -59
  246. data/test/oxt/syscall_interruption_test.cpp +0 -39
  247. data/test/ruby/debug_logging_spec.rb +0 -145
  248. data/test/ruby/message_channel_spec.rb +0 -196
  249. data/test/ruby/rack/loader_spec.rb +0 -42
  250. data/test/ruby/rack/preloader_spec.rb +0 -48
  251. data/test/ruby/rails3.0/loader_spec.rb +0 -26
  252. data/test/ruby/rails3.0/preloader_spec.rb +0 -32
  253. data/test/ruby/rails3.1/loader_spec.rb +0 -26
  254. data/test/ruby/rails3.1/preloader_spec.rb +0 -32
  255. data/test/ruby/rails3.2/loader_spec.rb +0 -26
  256. data/test/ruby/rails3.2/preloader_spec.rb +0 -32
  257. data/test/ruby/rails4.0/loader_spec.rb +0 -28
  258. data/test/ruby/rails4.0/preloader_spec.rb +0 -34
  259. data/test/ruby/rails4.1/loader_spec.rb +0 -28
  260. data/test/ruby/rails4.1/preloader_spec.rb +0 -34
  261. data/test/ruby/request_handler_spec.rb +0 -747
  262. data/test/ruby/shared/loader_sharedspec.rb +0 -247
  263. data/test/ruby/shared/rails/union_station_extensions_sharedspec.rb +0 -357
  264. data/test/ruby/shared/ruby_loader_sharedspec.rb +0 -55
  265. data/test/ruby/spec_helper.rb +0 -114
  266. data/test/ruby/standalone/runtime_installer_spec.rb +0 -402
  267. data/test/ruby/union_station_spec.rb +0 -288
  268. data/test/ruby/utils/file_system_watcher_spec.rb +0 -229
  269. data/test/ruby/utils/hosts_file_parser.rb +0 -258
  270. data/test/ruby/utils/tee_input_spec.rb +0 -235
  271. data/test/ruby/utils/unseekable_socket_spec.rb +0 -66
  272. data/test/ruby/utils_spec.rb +0 -41
  273. data/test/stub/apache2/httpd.conf.erb +0 -122
  274. data/test/stub/apache2/mime.types +0 -748
  275. data/test/stub/garbage1.dat +0 -0
  276. data/test/stub/garbage2.dat +0 -0
  277. data/test/stub/garbage3.dat +0 -0
  278. data/test/stub/http_request.yml +0 -23
  279. data/test/stub/index.html +0 -1
  280. data/test/stub/nginx/koi-utf +0 -109
  281. data/test/stub/nginx/koi-win +0 -103
  282. data/test/stub/nginx/mime.types +0 -70
  283. data/test/stub/nginx/nginx.conf.erb +0 -70
  284. data/test/stub/nginx/win-utf +0 -126
  285. data/test/stub/node/app.js +0 -133
  286. data/test/stub/node/public/.gitignore +0 -0
  287. data/test/stub/node/tmp/.gitignore +0 -0
  288. data/test/stub/rack/config.ru +0 -95
  289. data/test/stub/rack/library.rb +0 -16
  290. data/test/stub/rack/public/.gitignore +0 -0
  291. data/test/stub/rack/start.rb +0 -52
  292. data/test/stub/rack/tmp/.gitignore +0 -0
  293. data/test/stub/rails3.0/.gitignore +0 -4
  294. data/test/stub/rails3.0/Gemfile +0 -22
  295. data/test/stub/rails3.0/Gemfile.lock +0 -80
  296. data/test/stub/rails3.0/Rakefile +0 -10
  297. data/test/stub/rails3.0/app/controllers/application_controller.rb +0 -4
  298. data/test/stub/rails3.0/app/helpers/application_helper.rb +0 -2
  299. data/test/stub/rails3.0/app/views/layouts/application.html.erb +0 -14
  300. data/test/stub/rails3.0/config.ru +0 -4
  301. data/test/stub/rails3.0/config/application.rb +0 -48
  302. data/test/stub/rails3.0/config/boot.rb +0 -13
  303. data/test/stub/rails3.0/config/database.yml +0 -22
  304. data/test/stub/rails3.0/config/environment.rb +0 -5
  305. data/test/stub/rails3.0/config/environments/development.rb +0 -19
  306. data/test/stub/rails3.0/config/environments/production.rb +0 -48
  307. data/test/stub/rails3.0/config/environments/test.rb +0 -32
  308. data/test/stub/rails3.0/config/initializers/backtrace_silencers.rb +0 -7
  309. data/test/stub/rails3.0/config/initializers/inflections.rb +0 -10
  310. data/test/stub/rails3.0/config/initializers/mime_types.rb +0 -5
  311. data/test/stub/rails3.0/config/initializers/passenger.rb +0 -2
  312. data/test/stub/rails3.0/config/initializers/secret_token.rb +0 -7
  313. data/test/stub/rails3.0/config/initializers/session_store.rb +0 -8
  314. data/test/stub/rails3.0/config/locales/en.yml +0 -5
  315. data/test/stub/rails3.0/config/routes.rb +0 -58
  316. data/test/stub/rails3.0/db/seeds.rb +0 -7
  317. data/test/stub/rails3.0/doc/README_FOR_APP +0 -2
  318. data/test/stub/rails3.0/lib/tasks/.gitkeep +0 -0
  319. data/test/stub/rails3.0/log/.gitignore +0 -0
  320. data/test/stub/rails3.0/public/404.html +0 -26
  321. data/test/stub/rails3.0/public/422.html +0 -26
  322. data/test/stub/rails3.0/public/500.html +0 -26
  323. data/test/stub/rails3.0/public/favicon.ico +0 -0
  324. data/test/stub/rails3.0/public/index.html +0 -279
  325. data/test/stub/rails3.0/public/robots.txt +0 -5
  326. data/test/stub/rails3.0/public/stylesheets/.gitkeep +0 -0
  327. data/test/stub/rails3.0/script/rails +0 -9
  328. data/test/stub/rails3.0/test/performance/browsing_test.rb +0 -9
  329. data/test/stub/rails3.0/test/test_helper.rb +0 -13
  330. data/test/stub/rails3.0/vendor/plugins/.gitkeep +0 -0
  331. data/test/stub/rails3.1/.gitignore +0 -15
  332. data/test/stub/rails3.1/Gemfile +0 -37
  333. data/test/stub/rails3.1/Gemfile.lock +0 -115
  334. data/test/stub/rails3.1/README +0 -261
  335. data/test/stub/rails3.1/Rakefile +0 -7
  336. data/test/stub/rails3.1/app/assets/images/rails.png +0 -0
  337. data/test/stub/rails3.1/app/assets/stylesheets/application.css +0 -7
  338. data/test/stub/rails3.1/app/controllers/application_controller.rb +0 -3
  339. data/test/stub/rails3.1/app/helpers/application_helper.rb +0 -2
  340. data/test/stub/rails3.1/app/mailers/.gitkeep +0 -0
  341. data/test/stub/rails3.1/app/models/.gitkeep +0 -0
  342. data/test/stub/rails3.1/app/views/layouts/application.html.erb +0 -14
  343. data/test/stub/rails3.1/config.ru +0 -4
  344. data/test/stub/rails3.1/config/application.rb +0 -48
  345. data/test/stub/rails3.1/config/boot.rb +0 -6
  346. data/test/stub/rails3.1/config/database.yml +0 -25
  347. data/test/stub/rails3.1/config/environment.rb +0 -5
  348. data/test/stub/rails3.1/config/environments/development.rb +0 -30
  349. data/test/stub/rails3.1/config/environments/production.rb +0 -60
  350. data/test/stub/rails3.1/config/environments/test.rb +0 -39
  351. data/test/stub/rails3.1/config/initializers/backtrace_silencers.rb +0 -7
  352. data/test/stub/rails3.1/config/initializers/inflections.rb +0 -10
  353. data/test/stub/rails3.1/config/initializers/mime_types.rb +0 -5
  354. data/test/stub/rails3.1/config/initializers/passenger.rb +0 -2
  355. data/test/stub/rails3.1/config/initializers/secret_token.rb +0 -7
  356. data/test/stub/rails3.1/config/initializers/session_store.rb +0 -8
  357. data/test/stub/rails3.1/config/initializers/wrap_parameters.rb +0 -14
  358. data/test/stub/rails3.1/config/locales/en.yml +0 -5
  359. data/test/stub/rails3.1/config/routes.rb +0 -58
  360. data/test/stub/rails3.1/db/seeds.rb +0 -7
  361. data/test/stub/rails3.1/doc/README_FOR_APP +0 -2
  362. data/test/stub/rails3.1/lib/assets/.gitkeep +0 -0
  363. data/test/stub/rails3.1/lib/tasks/.gitkeep +0 -0
  364. data/test/stub/rails3.1/log/.gitkeep +0 -0
  365. data/test/stub/rails3.1/public/404.html +0 -26
  366. data/test/stub/rails3.1/public/422.html +0 -26
  367. data/test/stub/rails3.1/public/500.html +0 -26
  368. data/test/stub/rails3.1/public/favicon.ico +0 -0
  369. data/test/stub/rails3.1/public/index.html +0 -241
  370. data/test/stub/rails3.1/public/robots.txt +0 -5
  371. data/test/stub/rails3.1/script/rails +0 -6
  372. data/test/stub/rails3.1/test/fixtures/.gitkeep +0 -0
  373. data/test/stub/rails3.1/test/functional/.gitkeep +0 -0
  374. data/test/stub/rails3.1/test/integration/.gitkeep +0 -0
  375. data/test/stub/rails3.1/test/performance/browsing_test.rb +0 -12
  376. data/test/stub/rails3.1/test/test_helper.rb +0 -13
  377. data/test/stub/rails3.1/test/unit/.gitkeep +0 -0
  378. data/test/stub/rails3.1/vendor/assets/stylesheets/.gitkeep +0 -0
  379. data/test/stub/rails3.1/vendor/plugins/.gitkeep +0 -0
  380. data/test/stub/rails3.2/.gitignore +0 -15
  381. data/test/stub/rails3.2/Gemfile +0 -39
  382. data/test/stub/rails3.2/Gemfile.lock +0 -113
  383. data/test/stub/rails3.2/Rakefile +0 -7
  384. data/test/stub/rails3.2/app/assets/images/rails.png +0 -0
  385. data/test/stub/rails3.2/app/assets/stylesheets/application.css +0 -13
  386. data/test/stub/rails3.2/app/controllers/application_controller.rb +0 -3
  387. data/test/stub/rails3.2/app/helpers/application_helper.rb +0 -2
  388. data/test/stub/rails3.2/app/mailers/.gitkeep +0 -0
  389. data/test/stub/rails3.2/app/models/.gitkeep +0 -0
  390. data/test/stub/rails3.2/app/views/layouts/application.html.erb +0 -14
  391. data/test/stub/rails3.2/config.ru +0 -4
  392. data/test/stub/rails3.2/config/application.rb +0 -62
  393. data/test/stub/rails3.2/config/boot.rb +0 -6
  394. data/test/stub/rails3.2/config/database.yml +0 -25
  395. data/test/stub/rails3.2/config/environment.rb +0 -5
  396. data/test/stub/rails3.2/config/environments/development.rb +0 -37
  397. data/test/stub/rails3.2/config/environments/production.rb +0 -67
  398. data/test/stub/rails3.2/config/environments/test.rb +0 -37
  399. data/test/stub/rails3.2/config/initializers/backtrace_silencers.rb +0 -7
  400. data/test/stub/rails3.2/config/initializers/inflections.rb +0 -15
  401. data/test/stub/rails3.2/config/initializers/mime_types.rb +0 -5
  402. data/test/stub/rails3.2/config/initializers/passenger.rb +0 -2
  403. data/test/stub/rails3.2/config/initializers/secret_token.rb +0 -7
  404. data/test/stub/rails3.2/config/initializers/session_store.rb +0 -8
  405. data/test/stub/rails3.2/config/initializers/wrap_parameters.rb +0 -14
  406. data/test/stub/rails3.2/config/locales/en.yml +0 -5
  407. data/test/stub/rails3.2/config/routes.rb +0 -58
  408. data/test/stub/rails3.2/db/seeds.rb +0 -7
  409. data/test/stub/rails3.2/doc/README_FOR_APP +0 -2
  410. data/test/stub/rails3.2/lib/assets/.gitkeep +0 -0
  411. data/test/stub/rails3.2/lib/tasks/.gitkeep +0 -0
  412. data/test/stub/rails3.2/log/.gitkeep +0 -0
  413. data/test/stub/rails3.2/public/404.html +0 -26
  414. data/test/stub/rails3.2/public/422.html +0 -26
  415. data/test/stub/rails3.2/public/500.html +0 -25
  416. data/test/stub/rails3.2/public/favicon.ico +0 -0
  417. data/test/stub/rails3.2/public/index.html +0 -241
  418. data/test/stub/rails3.2/public/robots.txt +0 -5
  419. data/test/stub/rails3.2/script/rails +0 -6
  420. data/test/stub/rails3.2/test/fixtures/.gitkeep +0 -0
  421. data/test/stub/rails3.2/test/functional/.gitkeep +0 -0
  422. data/test/stub/rails3.2/test/integration/.gitkeep +0 -0
  423. data/test/stub/rails3.2/test/performance/browsing_test.rb +0 -12
  424. data/test/stub/rails3.2/test/test_helper.rb +0 -13
  425. data/test/stub/rails3.2/test/unit/.gitkeep +0 -0
  426. data/test/stub/rails3.2/vendor/assets/stylesheets/.gitkeep +0 -0
  427. data/test/stub/rails3.2/vendor/plugins/.gitkeep +0 -0
  428. data/test/stub/rails4.0/.gitignore +0 -16
  429. data/test/stub/rails4.0/Gemfile +0 -45
  430. data/test/stub/rails4.0/Gemfile.lock +0 -126
  431. data/test/stub/rails4.0/README.rdoc +0 -28
  432. data/test/stub/rails4.0/Rakefile +0 -6
  433. data/test/stub/rails4.0/app/assets/images/.keep +0 -0
  434. data/test/stub/rails4.0/app/assets/javascripts/application.js +0 -16
  435. data/test/stub/rails4.0/app/assets/stylesheets/application.css +0 -13
  436. data/test/stub/rails4.0/app/controllers/application_controller.rb +0 -5
  437. data/test/stub/rails4.0/app/controllers/concerns/.keep +0 -0
  438. data/test/stub/rails4.0/app/helpers/application_helper.rb +0 -2
  439. data/test/stub/rails4.0/app/mailers/.keep +0 -0
  440. data/test/stub/rails4.0/app/models/.keep +0 -0
  441. data/test/stub/rails4.0/app/models/concerns/.keep +0 -0
  442. data/test/stub/rails4.0/app/views/layouts/application.html.erb +0 -14
  443. data/test/stub/rails4.0/bin/bundle +0 -3
  444. data/test/stub/rails4.0/bin/rails +0 -4
  445. data/test/stub/rails4.0/bin/rake +0 -4
  446. data/test/stub/rails4.0/config.ru +0 -4
  447. data/test/stub/rails4.0/config/application.rb +0 -23
  448. data/test/stub/rails4.0/config/boot.rb +0 -4
  449. data/test/stub/rails4.0/config/database.yml +0 -25
  450. data/test/stub/rails4.0/config/environment.rb +0 -5
  451. data/test/stub/rails4.0/config/environments/development.rb +0 -29
  452. data/test/stub/rails4.0/config/environments/production.rb +0 -80
  453. data/test/stub/rails4.0/config/environments/test.rb +0 -36
  454. data/test/stub/rails4.0/config/initializers/backtrace_silencers.rb +0 -7
  455. data/test/stub/rails4.0/config/initializers/filter_parameter_logging.rb +0 -4
  456. data/test/stub/rails4.0/config/initializers/inflections.rb +0 -16
  457. data/test/stub/rails4.0/config/initializers/mime_types.rb +0 -5
  458. data/test/stub/rails4.0/config/initializers/passenger.rb +0 -2
  459. data/test/stub/rails4.0/config/initializers/secret_token.rb +0 -12
  460. data/test/stub/rails4.0/config/initializers/session_store.rb +0 -3
  461. data/test/stub/rails4.0/config/initializers/wrap_parameters.rb +0 -14
  462. data/test/stub/rails4.0/config/locales/en.yml +0 -23
  463. data/test/stub/rails4.0/config/routes.rb +0 -57
  464. data/test/stub/rails4.0/db/seeds.rb +0 -7
  465. data/test/stub/rails4.0/lib/assets/.keep +0 -0
  466. data/test/stub/rails4.0/lib/tasks/.keep +0 -0
  467. data/test/stub/rails4.0/log/.keep +0 -0
  468. data/test/stub/rails4.0/public/404.html +0 -58
  469. data/test/stub/rails4.0/public/422.html +0 -58
  470. data/test/stub/rails4.0/public/500.html +0 -57
  471. data/test/stub/rails4.0/public/favicon.ico +0 -0
  472. data/test/stub/rails4.0/public/robots.txt +0 -5
  473. data/test/stub/rails4.0/test/controllers/.keep +0 -0
  474. data/test/stub/rails4.0/test/fixtures/.keep +0 -0
  475. data/test/stub/rails4.0/test/helpers/.keep +0 -0
  476. data/test/stub/rails4.0/test/integration/.keep +0 -0
  477. data/test/stub/rails4.0/test/mailers/.keep +0 -0
  478. data/test/stub/rails4.0/test/models/.keep +0 -0
  479. data/test/stub/rails4.0/test/test_helper.rb +0 -15
  480. data/test/stub/rails4.0/vendor/assets/javascripts/.keep +0 -0
  481. data/test/stub/rails4.0/vendor/assets/stylesheets/.keep +0 -0
  482. data/test/stub/rails4.1/.gitignore +0 -16
  483. data/test/stub/rails4.1/Gemfile +0 -45
  484. data/test/stub/rails4.1/Gemfile.lock +0 -129
  485. data/test/stub/rails4.1/README.rdoc +0 -28
  486. data/test/stub/rails4.1/Rakefile +0 -6
  487. data/test/stub/rails4.1/app/assets/images/.keep +0 -0
  488. data/test/stub/rails4.1/app/assets/javascripts/application.js +0 -16
  489. data/test/stub/rails4.1/app/assets/stylesheets/application.css +0 -13
  490. data/test/stub/rails4.1/app/controllers/application_controller.rb +0 -5
  491. data/test/stub/rails4.1/app/controllers/concerns/.keep +0 -0
  492. data/test/stub/rails4.1/app/helpers/application_helper.rb +0 -2
  493. data/test/stub/rails4.1/app/mailers/.keep +0 -0
  494. data/test/stub/rails4.1/app/models/.keep +0 -0
  495. data/test/stub/rails4.1/app/models/concerns/.keep +0 -0
  496. data/test/stub/rails4.1/app/views/layouts/application.html.erb +0 -14
  497. data/test/stub/rails4.1/bin/bundle +0 -3
  498. data/test/stub/rails4.1/bin/rails +0 -4
  499. data/test/stub/rails4.1/bin/rake +0 -4
  500. data/test/stub/rails4.1/config.ru +0 -4
  501. data/test/stub/rails4.1/config/application.rb +0 -23
  502. data/test/stub/rails4.1/config/boot.rb +0 -4
  503. data/test/stub/rails4.1/config/database.yml +0 -25
  504. data/test/stub/rails4.1/config/environment.rb +0 -5
  505. data/test/stub/rails4.1/config/environments/development.rb +0 -29
  506. data/test/stub/rails4.1/config/environments/production.rb +0 -80
  507. data/test/stub/rails4.1/config/environments/test.rb +0 -36
  508. data/test/stub/rails4.1/config/initializers/backtrace_silencers.rb +0 -7
  509. data/test/stub/rails4.1/config/initializers/filter_parameter_logging.rb +0 -4
  510. data/test/stub/rails4.1/config/initializers/inflections.rb +0 -16
  511. data/test/stub/rails4.1/config/initializers/mime_types.rb +0 -5
  512. data/test/stub/rails4.1/config/initializers/passenger.rb +0 -5
  513. data/test/stub/rails4.1/config/initializers/secret_token.rb +0 -12
  514. data/test/stub/rails4.1/config/initializers/session_store.rb +0 -3
  515. data/test/stub/rails4.1/config/initializers/wrap_parameters.rb +0 -14
  516. data/test/stub/rails4.1/config/locales/en.yml +0 -23
  517. data/test/stub/rails4.1/config/routes.rb +0 -57
  518. data/test/stub/rails4.1/db/seeds.rb +0 -7
  519. data/test/stub/rails4.1/lib/assets/.keep +0 -0
  520. data/test/stub/rails4.1/lib/tasks/.keep +0 -0
  521. data/test/stub/rails4.1/log/.keep +0 -0
  522. data/test/stub/rails4.1/public/404.html +0 -58
  523. data/test/stub/rails4.1/public/422.html +0 -58
  524. data/test/stub/rails4.1/public/500.html +0 -57
  525. data/test/stub/rails4.1/public/favicon.ico +0 -0
  526. data/test/stub/rails4.1/public/robots.txt +0 -5
  527. data/test/stub/rails4.1/test/controllers/.keep +0 -0
  528. data/test/stub/rails4.1/test/fixtures/.keep +0 -0
  529. data/test/stub/rails4.1/test/helpers/.keep +0 -0
  530. data/test/stub/rails4.1/test/integration/.keep +0 -0
  531. data/test/stub/rails4.1/test/mailers/.keep +0 -0
  532. data/test/stub/rails4.1/test/models/.keep +0 -0
  533. data/test/stub/rails4.1/test/test_helper.rb +0 -15
  534. data/test/stub/rails4.1/vendor/assets/javascripts/.keep +0 -0
  535. data/test/stub/rails4.1/vendor/assets/stylesheets/.keep +0 -0
  536. data/test/stub/start_error.pl +0 -24
  537. data/test/stub/upload_data.txt +0 -494
  538. data/test/stub/wsgi/passenger_wsgi.py +0 -212
  539. data/test/stub/wsgi/public/.gitignore +0 -0
  540. data/test/stub/wsgi/tmp/.gitignore +0 -0
  541. data/test/support/allocate_memory.c +0 -14
  542. data/test/support/apache2_controller.rb +0 -258
  543. data/test/support/multipart.rb +0 -62
  544. data/test/support/nginx_controller.rb +0 -97
  545. data/test/support/placebo-preloader.rb +0 -88
  546. data/test/support/test_helper.rb +0 -455
  547. data/test/support/valgrind.h +0 -2539
  548. data/test/tut/tut.h +0 -1310
  549. data/test/tut/tut_reporter.h +0 -256
  550. data/test/valgrind-osx.supp +0 -7
@@ -1,144 +0,0 @@
1
- #!/bin/sh
2
- #
3
- # nginx - this script starts and stops the nginx daemon
4
- #
5
- # chkconfig: - 85 15
6
- # description: Nginx is an HTTP(S) server, HTTP(S) reverse \
7
- # proxy and IMAP/POP3 proxy server
8
- # processname: nginx
9
- # config: /etc/nginx/nginx.conf
10
- # config: /etc/sysconfig/nginx
11
- # pidfile: /var/run/nginx.pid
12
-
13
- # Source function library.
14
- . /etc/rc.d/init.d/functions
15
-
16
- # Source networking configuration.
17
- . /etc/sysconfig/network
18
-
19
- # Check that networking is up.
20
- [ "$NETWORKING" = "no" ] && exit 0
21
-
22
- nginx="/usr/sbin/nginx"
23
- prog=$(basename $nginx)
24
-
25
- sysconfig="/etc/sysconfig/$prog"
26
- lockfile="/var/lock/subsys/nginx"
27
- pidfile="/var/run/${prog}.pid"
28
-
29
- NGINX_CONF_FILE="/etc/nginx/nginx.conf"
30
-
31
- [ -f $sysconfig ] && . $sysconfig
32
-
33
-
34
- start() {
35
- [ -x $nginx ] || exit 5
36
- [ -f $NGINX_CONF_FILE ] || exit 6
37
- echo -n $"Starting $prog: "
38
- daemon $nginx -c $NGINX_CONF_FILE
39
- retval=$?
40
- echo
41
- [ $retval -eq 0 ] && touch $lockfile
42
- return $retval
43
- }
44
-
45
- stop() {
46
- echo -n $"Stopping $prog: "
47
- killproc -p $pidfile $prog
48
- retval=$?
49
- echo
50
- [ $retval -eq 0 ] && rm -f $lockfile
51
- return $retval
52
- }
53
-
54
- restart() {
55
- configtest_q || return 6
56
- stop
57
- start
58
- }
59
-
60
- reload() {
61
- configtest_q || return 6
62
- echo -n $"Reloading $prog: "
63
- killproc -p $pidfile $prog -HUP
64
- echo
65
- }
66
-
67
- configtest() {
68
- $nginx -t -c $NGINX_CONF_FILE
69
- }
70
-
71
- configtest_q() {
72
- $nginx -t -q -c $NGINX_CONF_FILE
73
- }
74
-
75
- rh_status() {
76
- status $prog
77
- }
78
-
79
- rh_status_q() {
80
- rh_status >/dev/null 2>&1
81
- }
82
-
83
- # Upgrade the binary with no downtime.
84
- upgrade() {
85
- local oldbin_pidfile="${pidfile}.oldbin"
86
-
87
- configtest_q || return 6
88
- echo -n $"Upgrading $prog: "
89
- killproc -p $pidfile $prog -USR2
90
- retval=$?
91
- sleep 1
92
- if [[ -f ${oldbin_pidfile} && -f ${pidfile} ]]; then
93
- killproc -p $oldbin_pidfile $prog -QUIT
94
- success $"$prog online upgrade"
95
- echo
96
- return 0
97
- else
98
- failure $"$prog online upgrade"
99
- echo
100
- return 1
101
- fi
102
- }
103
-
104
- # Tell nginx to reopen logs
105
- reopen_logs() {
106
- configtest_q || return 6
107
- echo -n $"Reopening $prog logs: "
108
- killproc -p $pidfile $prog -USR1
109
- retval=$?
110
- echo
111
- return $retval
112
- }
113
-
114
- case "$1" in
115
- start)
116
- rh_status_q && exit 0
117
- $1
118
- ;;
119
- stop)
120
- rh_status_q || exit 0
121
- $1
122
- ;;
123
- restart|configtest|reopen_logs)
124
- $1
125
- ;;
126
- force-reload|upgrade)
127
- rh_status_q || exit 7
128
- upgrade
129
- ;;
130
- reload)
131
- rh_status_q || exit 7
132
- $1
133
- ;;
134
- status|status_q)
135
- rh_$1
136
- ;;
137
- condrestart|try-restart)
138
- rh_status_q || exit 7
139
- restart
140
- ;;
141
- *)
142
- echo $"Usage: $0 {start|stop|reload|configtest|status|force-reload|upgrade|restart|reopen_logs}"
143
- exit 2
144
- esac
@@ -1,13 +0,0 @@
1
- /var/log/nginx/*log {
2
- create 0644 nginx nginx
3
- daily
4
- rotate 10
5
- missingok
6
- notifempty
7
- compress
8
- sharedscripts
9
- postrotate
10
- /bin/kill -USR1 `cat /var/run/nginx.pid 2>/dev/null` 2>/dev/null || true
11
- endscript
12
- }
13
-
@@ -1,15 +0,0 @@
1
- [Unit]
2
- Description=The nginx HTTP and reverse proxy server
3
- After=syslog.target network.target remote-fs.target nss-lookup.target
4
-
5
- [Service]
6
- Type=forking
7
- PIDFile=/run/nginx.pid
8
- ExecStartPre=/usr/sbin/nginx -t
9
- ExecStart=/usr/sbin/nginx
10
- ExecReload=/bin/kill -s HUP $MAINPID
11
- ExecStop=/bin/kill -s QUIT $MAINPID
12
- PrivateTmp=true
13
-
14
- [Install]
15
- WantedBy=multi-user.target
@@ -1,560 +0,0 @@
1
- # Based on http://pkgs.fedoraproject.org/cgit/nginx.git/tree/
2
-
3
- %global package_name <%= NGINX_RPM_NAME %>
4
- %global package_version <%= NGINX_RPM_VERSION %>
5
- %global package_release <%= NGINX_RPM_RELEASE %>
6
- %global passenger_version <%= PASSENGER_VERSION %>
7
- %global passenger_package_name <%= PASSENGER_RPM_NAME %>
8
- %global passenger_package_version <%= PASSENGER_RPM_VERSION %>
9
- %global passenger_tarball_name <%= PASSENGER_TARBALL_NAME %>
10
- %global release_dist .<%= @distribution %>
11
-
12
- %global _hardened_build 1
13
- %global nginx_user nginx
14
- %global nginx_group %{nginx_user}
15
- %global nginx_home %{_localstatedir}/lib/nginx
16
- %global nginx_home_tmp %{nginx_home}/tmp
17
- %global nginx_confdir %{_sysconfdir}/nginx
18
- %global nginx_datadir %{_datadir}/nginx
19
- %global nginx_logdir %{_localstatedir}/log/nginx
20
- %global nginx_webroot %{nginx_datadir}/html
21
-
22
- %{!?ruby_sitelibdir: %global ruby_sitelibdir %(ruby -rrbconfig -e 'puts RbConfig::CONFIG["sitelibdir"]')}
23
- %global passenger_ruby_libdir %{ruby_sitelibdir}
24
- %global locations_ini %{passenger_ruby_libdir}/phusion_passenger/locations.ini
25
-
26
- # gperftools exist only on selected arches
27
- %ifarch %{ix86} x86_64 ppc ppc64 %{arm}
28
- %global with_gperftools 1
29
- %endif
30
-
31
- Name: %{package_name}
32
- Epoch: 1
33
- Version: %{package_version}
34
- Release: %{package_release}%{?release_dist}
35
-
36
- Summary: A high performance web server and reverse proxy server
37
- Group: System Environment/Daemons
38
- # BSD License (two clause)
39
- # http://www.freebsd.org/copyright/freebsd-license.html
40
- License: BSD
41
- URL: http://nginx.org/
42
-
43
- Source0: http://nginx.org/download/nginx-%{version}.tar.gz
44
- Source1: http://nginx.org/download/nginx-%{version}.tar.gz.asc
45
- Source2: http://s3.amazonaws.com/phusion-passenger/releases/%{passenger_tarball_name}-%{passenger_version}.tar.gz
46
- Source10: nginx.service
47
- Source11: nginx.logrotate
48
- Source12: nginx.conf
49
- Source13: nginx-upgrade
50
- Source14: nginx-upgrade.8
51
- Source15: nginx.init
52
- Source16: nginx.sysconfig
53
- Source19: passenger.conf
54
- Source100: index.html
55
- Source101: poweredby.png
56
- Source102: nginx-logo.png
57
- Source103: 404.html
58
- Source104: 50x.html
59
-
60
- # removes -Werror in upstream build scripts. -Werror conflicts with
61
- # -D_FORTIFY_SOURCE=2 causing warnings to turn into errors.
62
- Patch0: nginx-auto-cc-gcc.patch
63
-
64
- BuildRequires: GeoIP-devel
65
- BuildRequires: gd-devel
66
- %if 0%{?with_gperftools}
67
- BuildRequires: gperftools-devel
68
- %endif
69
- BuildRequires: libxslt-devel
70
- BuildRequires: openssl-devel
71
- BuildRequires: pcre-devel
72
- BuildRequires: perl-devel
73
- BuildRequires: perl(ExtUtils::Embed)
74
- BuildRequires: zlib-devel
75
- Requires: GeoIP
76
- Requires: gd
77
- Requires: openssl
78
- Requires: pcre
79
- Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
80
- Requires(pre): shadow-utils
81
- Conflicts: %{passenger_package_name}%{?_isa} < %{passenger_package_version}
82
- Conflicts: %{passenger_package_name}%{?_isa} > %{passenger_package_version}
83
- Provides: webserver
84
-
85
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
86
- BuildRequires: systemd
87
- Requires(post): systemd
88
- Requires(preun): systemd
89
- Requires(postun): systemd
90
- %else
91
- Requires(post): chkconfig
92
- Requires(preun): chkconfig, initscripts
93
- Requires(postun): initscripts
94
- %endif
95
-
96
- %if 0%{?rhel} >= 6 || 0%{?fedora} >= 15
97
- BuildRequires: libcurl-devel
98
- %else
99
- BuildRequires: curl-devel
100
- %endif
101
-
102
- %if 0%{?rhel} < 6 && 0%{?fedora} <= 16
103
- Requires: rubygem(fastthread) >= 1.0.1
104
- BuildRequires: rubygem(fastthread) >= 1.0.1
105
- %endif
106
-
107
- BuildRequires: httpd-devel
108
- BuildRequires: libev-devel >= 4.0.0
109
- BuildRequires: ruby
110
- BuildRequires: ruby-devel
111
- BuildRequires: rubygems
112
- BuildRequires: rubygems-devel
113
- BuildRequires: rubygem(rake) >= 0.8.1
114
- BuildRequires: rubygem(rack)
115
-
116
- %description
117
- Nginx is a web server and a reverse proxy server for HTTP, SMTP, POP3 and
118
- IMAP protocols, with a strong focus on high concurrency, performance and low
119
- memory usage. Includes Phusion Passenger support.
120
-
121
-
122
- %prep
123
- %setup -q
124
- %patch0 -p0
125
- tar xzf %{SOURCE2}
126
-
127
-
128
- %build
129
- export EXTRA_CFLAGS="${CFLAGS:-%optflags} -Wno-deprecated"
130
- export EXTRA_CXXFLAGS="${CXXFLAGS:-%optflags} -Wno-deprecated"
131
-
132
- # Remove default optimization flags and use Phusion Passenger's recommended optimization flags.
133
- export EXTRA_CFLAGS=`echo "$EXTRA_CFLAGS" | sed 's|-O2||g'`
134
- export EXTRA_CXXFLAGS=`echo "$EXTRA_CXXFLAGS" | sed 's|-O2||g'`
135
- export OPTIMIZE=yes
136
-
137
- export USE_VENDORED_LIBEV=false
138
- export CACHING=false
139
-
140
- # Speed up ccache (reduce I/O) by lightly compressing things.
141
- # Always set these variables because pbuilder uses ccache transparently.
142
- export CCACHE_COMPRESS=1
143
- export CCACHE_COMPRESS_LEVEL=3
144
-
145
- pushd `pwd`/%{passenger_tarball_name}-%{passenger_version}
146
- if command -v drake; then
147
- drake %{?_smp_mflags} nginx
148
- else
149
- rake nginx
150
- fi
151
- popd
152
-
153
- # nginx does not utilize a standard configure script. It has its own
154
- # and the standard configure options cause the nginx configure script
155
- # to error out. This is is also the reason for the DESTDIR environment
156
- # variable.
157
- export DESTDIR=%{buildroot}
158
- ./configure \
159
- --prefix=%{nginx_datadir} \
160
- --sbin-path=%{_sbindir}/nginx \
161
- --conf-path=%{nginx_confdir}/nginx.conf \
162
- --error-log-path=%{nginx_logdir}/error.log \
163
- --http-log-path=%{nginx_logdir}/access.log \
164
- --http-client-body-temp-path=%{nginx_home_tmp}/client_body \
165
- --http-proxy-temp-path=%{nginx_home_tmp}/proxy \
166
- --http-fastcgi-temp-path=%{nginx_home_tmp}/fastcgi \
167
- --http-uwsgi-temp-path=%{nginx_home_tmp}/uwsgi \
168
- --http-scgi-temp-path=%{nginx_home_tmp}/scgi \
169
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
170
- --pid-path=/run/nginx.pid \
171
- --lock-path=/run/lock/subsys/nginx \
172
- %else
173
- --pid-path=%{_localstatedir}/run/nginx.pid \
174
- --lock-path=%{_localstatedir}/lock/subsys/nginx \
175
- %endif
176
- --user=%{nginx_user} \
177
- --group=%{nginx_group} \
178
- --with-file-aio \
179
- --with-ipv6 \
180
- --with-http_ssl_module \
181
- --with-http_spdy_module \
182
- --with-http_realip_module \
183
- --with-http_addition_module \
184
- --with-http_xslt_module \
185
- --with-http_image_filter_module \
186
- --with-http_geoip_module \
187
- --with-http_sub_module \
188
- --with-http_dav_module \
189
- --with-http_flv_module \
190
- --with-http_mp4_module \
191
- --with-http_gunzip_module \
192
- --with-http_gzip_static_module \
193
- --with-http_random_index_module \
194
- --with-http_secure_link_module \
195
- --with-http_degradation_module \
196
- --with-http_stub_status_module \
197
- --with-http_perl_module \
198
- --with-mail \
199
- --with-mail_ssl_module \
200
- --with-pcre \
201
- %if 0%{?with_gperftools}
202
- --with-google_perftools_module \
203
- %endif
204
- --add-module=`pwd`/%{passenger_tarball_name}-%{passenger_version}/ext/nginx \
205
- --with-debug \
206
- --with-cc-opt="%{optflags} $(pcre-config --cflags)" \
207
- --with-ld-opt="$RPM_LD_FLAGS -Wl,-E" # so the perl module finds its symbols
208
-
209
- make %{?_smp_mflags}
210
-
211
-
212
- %install
213
- make install DESTDIR=%{buildroot} INSTALLDIRS=vendor
214
-
215
- find %{buildroot} -type f -name .packlist -exec rm -f '{}' \;
216
- find %{buildroot} -type f -name perllocal.pod -exec rm -f '{}' \;
217
- find %{buildroot} -type f -empty -exec rm -f '{}' \;
218
- find %{buildroot} -type f -iname '*.so' -exec chmod 0755 '{}' \;
219
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
220
- install -p -D -m 0644 %{SOURCE10} \
221
- %{buildroot}%{_unitdir}/nginx.service
222
- %else
223
- install -p -D -m 0755 %{SOURCE15} \
224
- %{buildroot}%{_initrddir}/nginx
225
- install -p -D -m 0644 %{SOURCE16} \
226
- %{buildroot}%{_sysconfdir}/sysconfig/nginx
227
- %endif
228
-
229
- install -p -D -m 0644 %{SOURCE11} \
230
- %{buildroot}%{_sysconfdir}/logrotate.d/nginx
231
-
232
- install -p -d -m 0755 %{buildroot}%{nginx_confdir}/conf.d
233
- install -p -d -m 0700 %{buildroot}%{nginx_home}
234
- install -p -d -m 0700 %{buildroot}%{nginx_home_tmp}
235
- install -p -d -m 0700 %{buildroot}%{nginx_logdir}
236
- install -p -d -m 0755 %{buildroot}%{nginx_webroot}
237
-
238
- install -p -m 0644 %{SOURCE12} \
239
- %{buildroot}%{nginx_confdir}
240
- install -p -m 0644 %{SOURCE19} \
241
- %{buildroot}%{nginx_confdir}/conf.d
242
- install -p -m 0644 %{SOURCE100} \
243
- %{buildroot}%{nginx_webroot}
244
- install -p -m 0644 %{SOURCE101} %{SOURCE102} \
245
- %{buildroot}%{nginx_webroot}
246
- install -p -m 0644 %{SOURCE103} %{SOURCE104} \
247
- %{buildroot}%{nginx_webroot}
248
-
249
- sed -i "s|PASSENGER_ROOT|%{locations_ini}|" %{buildroot}%{nginx_confdir}/conf.d/passenger.conf
250
-
251
- install -p -D -m 0644 %{_builddir}/nginx-%{version}/man/nginx.8 \
252
- %{buildroot}%{_mandir}/man8/nginx.8
253
-
254
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
255
- install -p -D -m 0755 %{SOURCE13} %{buildroot}%{_bindir}/nginx-upgrade
256
- install -p -D -m 0644 %{SOURCE14} %{buildroot}%{_mandir}/man8/nginx-upgrade.8
257
-
258
- sed -i 's|/var/run|/run|g' \
259
- %{buildroot}%{nginx_confdir}/nginx.conf \
260
- %{buildroot}%{_initrddir}/nginx \
261
- %{buildroot}%{_sysconfdir}/logrotate.d/nginx
262
- %endif
263
-
264
-
265
- %pre
266
- getent group %{nginx_group} > /dev/null || groupadd -r %{nginx_group}
267
- getent passwd %{nginx_user} > /dev/null || \
268
- useradd -r -d %{nginx_home} -g %{nginx_group} \
269
- -s /sbin/nologin -c "Nginx web server" %{nginx_user}
270
- exit 0
271
-
272
- %post
273
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
274
- %systemd_post nginx.service
275
- %else
276
- if [ $1 -eq 1 ]; then
277
- /sbin/chkconfig --add %{name}
278
- fi
279
- %endif
280
- if [ $1 -eq 2 ]; then
281
- # Make sure these directories are not world readable.
282
- chmod 700 %{nginx_home}
283
- chmod 700 %{nginx_home_tmp}
284
- chmod 700 %{nginx_logdir}
285
- fi
286
-
287
- %preun
288
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
289
- %systemd_preun nginx.service
290
- %else
291
- if [ $1 -eq 0 ]; then
292
- /sbin/service %{name} stop >/dev/null 2>&1
293
- /sbin/chkconfig --del %{name}
294
- fi
295
- %endif
296
-
297
- %postun
298
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
299
- %systemd_postun nginx.service
300
- %else
301
- if [ $1 -eq 2 ]; then
302
- /sbin/service %{name} upgrade || :
303
- fi
304
- %endif
305
-
306
- %files
307
- %doc LICENSE CHANGES README
308
- %{nginx_datadir}/
309
- %{_sbindir}/nginx
310
- %{_mandir}/man3/nginx.3pm*
311
- %{_mandir}/man8/nginx.8*
312
- %if 0%{?rhel} >= 7 || 0%{?fedora} >= 16
313
- %{_bindir}/nginx-upgrade
314
- %{_mandir}/man8/nginx-upgrade.8*
315
- %{_unitdir}/nginx.service
316
- %else
317
- %{_initrddir}/nginx
318
- %config(noreplace) %{_sysconfdir}/sysconfig/nginx
319
- %endif
320
- %dir %{nginx_confdir}
321
- %dir %{nginx_confdir}/conf.d
322
- %config(noreplace) %{nginx_confdir}/conf.d/passenger.conf
323
- %config(noreplace) %{nginx_confdir}/fastcgi.conf
324
- %config(noreplace) %{nginx_confdir}/fastcgi.conf.default
325
- %config(noreplace) %{nginx_confdir}/fastcgi_params
326
- %config(noreplace) %{nginx_confdir}/fastcgi_params.default
327
- %config(noreplace) %{nginx_confdir}/koi-utf
328
- %config(noreplace) %{nginx_confdir}/koi-win
329
- %config(noreplace) %{nginx_confdir}/mime.types
330
- %config(noreplace) %{nginx_confdir}/mime.types.default
331
- %config(noreplace) %{nginx_confdir}/nginx.conf
332
- %config(noreplace) %{nginx_confdir}/nginx.conf.default
333
- %config(noreplace) %{nginx_confdir}/scgi_params
334
- %config(noreplace) %{nginx_confdir}/scgi_params.default
335
- %config(noreplace) %{nginx_confdir}/uwsgi_params
336
- %config(noreplace) %{nginx_confdir}/uwsgi_params.default
337
- %config(noreplace) %{nginx_confdir}/win-utf
338
- %config(noreplace) %{_sysconfdir}/logrotate.d/nginx
339
- %dir %{perl_vendorarch}/auto/nginx
340
- %{perl_vendorarch}/nginx.pm
341
- %{perl_vendorarch}/auto/nginx/nginx.so
342
- %attr(700,%{nginx_user},%{nginx_group}) %dir %{nginx_home}
343
- %attr(700,%{nginx_user},%{nginx_group}) %dir %{nginx_home_tmp}
344
- %attr(700,%{nginx_user},%{nginx_group}) %dir %{nginx_logdir}
345
-
346
-
347
- %changelog
348
- * Wed Nov 20 2013 Peter Borsa <peter.borsa@gmail.com> - 1:1.4.4-1
349
- - Update to upstream release 1.4.4
350
- - Security fix BZ 1032267
351
-
352
- * Sun Nov 03 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.3-1
353
- - update to upstream release 1.4.3
354
-
355
- * Fri Aug 09 2013 Jonathan Steffan <jsteffan@fedoraproject.org> - 1:1.4.2-3
356
- - Add in conditionals to build for non-systemd targets
357
-
358
- * Sat Aug 03 2013 Petr Pisar <ppisar@redhat.com> - 1:1.4.2-2
359
- - Perl 5.18 rebuild
360
-
361
- * Fri Jul 19 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.2-1
362
- - update to upstream release 1.4.2
363
-
364
- * Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1:1.4.1-3
365
- - Perl 5.18 rebuild
366
-
367
- * Tue Jun 11 2013 Remi Collet <rcollet@redhat.com> - 1:1.4.1-2
368
- - rebuild for new GD 2.1.0
369
-
370
- * Tue May 07 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.1-1
371
- - update to upstream release 1.4.1 (#960605, #960606):
372
- CVE-2013-2028 stack-based buffer overflow when handling certain chunked
373
- transfer encoding requests
374
-
375
- * Sun Apr 28 2013 Dan Horák <dan[at]danny.cz> - 1:1.4.0-2
376
- - gperftools exist only on selected arches
377
-
378
- * Fri Apr 26 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.4.0-1
379
- - update to upstream release 1.4.0
380
- - enable SPDY module (new in this version)
381
- - enable http gunzip module (new in this version)
382
- - enable google perftools module and add gperftools-devel to BR
383
- - enable debugging (#956845)
384
- - trim changelog
385
-
386
- * Tue Apr 02 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.8-1
387
- - update to upstream release 1.2.8
388
-
389
- * Fri Feb 22 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.7-2
390
- - make sure nginx directories are not world readable (#913724, #913735)
391
-
392
- * Sat Feb 16 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.7-1
393
- - update to upstream release 1.2.7
394
- - add .asc file
395
-
396
- * Tue Feb 05 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-6
397
- - use 'kill' instead of 'systemctl' when rotating log files to workaround
398
- SELinux issue (#889151)
399
-
400
- * Wed Jan 23 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-5
401
- - uncomment "include /etc/nginx/conf.d/*.conf by default but leave the
402
- conf.d directory empty (#903065)
403
-
404
- * Wed Jan 23 2013 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-4
405
- - add comment in nginx.conf regarding "include /etc/nginf/conf.d/*.conf"
406
- (#903065)
407
-
408
- * Wed Dec 19 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-3
409
- - use correct file ownership when rotating log files
410
-
411
- * Tue Dec 18 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-2
412
- - send correct kill signal and use correct file permissions when rotating
413
- log files (#888225)
414
- - send correct kill signal in nginx-upgrade
415
-
416
- * Tue Dec 11 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.6-1
417
- - update to upstream release 1.2.6
418
-
419
- * Sat Nov 17 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.5-1
420
- - update to upstream release 1.2.5
421
-
422
- * Sun Oct 28 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.4-1
423
- - update to upstream release 1.2.4
424
- - introduce new systemd-rpm macros (#850228)
425
- - link to official documentation not the community wiki (#870733)
426
- - do not run systemctl try-restart after package upgrade to allow the
427
- administrator to run nginx-upgrade and avoid downtime
428
- - add nginx man page (#870738)
429
- - add nginx-upgrade man page and remove README.fedora
430
- - remove chkconfig from Requires(post/preun)
431
- - remove initscripts from Requires(preun/postun)
432
- - remove separate configuration files in "/etc/nginx/conf.d" directory
433
- and revert to upstream default of a centralized nginx.conf file
434
- (#803635) (#842738)
435
-
436
- * Fri Sep 21 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.3-1
437
- - update to upstream release 1.2.3
438
-
439
- * Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.2.1-3
440
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
441
-
442
- * Thu Jun 28 2012 Petr Pisar <ppisar@redhat.com> - 1:1.2.1-2
443
- - Perl 5.16 rebuild
444
-
445
- * Sun Jun 10 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.1-1
446
- - update to upstream release 1.2.1
447
-
448
- * Fri Jun 08 2012 Petr Pisar <ppisar@redhat.com> - 1:1.2.0-2
449
- - Perl 5.16 rebuild
450
-
451
- * Wed May 16 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.2.0-1
452
- - update to upstream release 1.2.0
453
-
454
- * Wed May 16 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-4
455
- - add nginx-upgrade to replace functionality from the nginx initscript
456
- that was lost after migration to systemd
457
- - add README.fedora to describe usage of nginx-upgrade
458
- - nginx.logrotate: use built-in systemd kill command in postrotate script
459
- - nginx.service: start after syslog.target and network.target
460
- - nginx.service: remove unnecessary references to config file location
461
- - nginx.service: use /bin/kill instead of "/usr/sbin/nginx -s" following
462
- advice from nginx-devel
463
- - nginx.service: use private /tmp
464
-
465
- * Mon May 14 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-3
466
- - fix incorrect postrotate script in nginx.logrotate
467
-
468
- * Thu Apr 19 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-2
469
- - renable auto-cc-gcc patch due to warnings on rawhide
470
-
471
- * Sat Apr 14 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.15-1
472
- - update to upstream release 1.0.15
473
- - no need to apply auto-cc-gcc patch
474
- - add %%global _hardened_build 1
475
-
476
- * Thu Mar 15 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.14-1
477
- - update to upstream release 1.0.14
478
- - amend some %%changelog formatting
479
-
480
- * Tue Mar 06 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.13-1
481
- - update to upstream release 1.0.13
482
- - amend --pid-path and --log-path
483
-
484
- * Sun Mar 04 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.12-5
485
- - change pid path in nginx.conf to match systemd service file
486
-
487
- * Sun Mar 04 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.12-3
488
- - fix %%pre scriptlet
489
-
490
- * Mon Feb 20 2012 Jamie Nguyen <jamielinux@fedoraproject.org> - 1:1.0.12-2
491
- - update upstream URL
492
- - replace %%define with %%global
493
- - remove obsolete BuildRoot tag, %%clean section and %%defattr
494
- - remove various unnecessary commands
495
- - add systemd service file and update scriptlets
496
- - add Epoch to accommodate %%triggerun as part of systemd migration
497
-
498
- * Sun Feb 19 2012 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.0.12-1
499
- - Update to 1.0.12
500
-
501
- * Thu Nov 17 2011 Keiran "Affix" Smith <fedora@affix.me> - 1.0.10-1
502
- - Bugfix: a segmentation fault might occur in a worker process if resolver got a big DNS response. Thanks to Ben Hawkes.
503
- - Bugfix: in cache key calculation if internal MD5 implementation wasused; the bug had appeared in 1.0.4.
504
- - Bugfix: the module ngx_http_mp4_module sent incorrect "Content-Length" response header line if the "start" argument was used. Thanks to Piotr Sikora.
505
-
506
- * Thu Oct 27 2011 Keiran "Affix" Smith <fedora@affix.me> - 1.0.8-1
507
- - Update to new 1.0.8 stable release
508
-
509
- * Fri Aug 26 2011 Keiran "Affix" Smith <fedora@affix.me> - 1.0.5-1
510
- - Update nginx to Latest Stable Release
511
-
512
- * Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.0.0-3
513
- - Perl mass rebuild
514
-
515
- * Thu Jun 09 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.0.0-2
516
- - Perl 5.14 mass rebuild
517
-
518
- * Wed Apr 27 2011 Jeremy Hinegardner <jeremy at hinegardner dot org> - 1.0.0-1
519
- - Update to 1.0.0
520
-
521
- * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.53-6
522
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
523
-
524
- * Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53.5
525
- - Extract out default config into its own file (bug #635776)
526
-
527
- * Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-4
528
- - Revert ownership of log dir
529
-
530
- * Sun Dec 12 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-3
531
- - Change ownership of /var/log/nginx to be 0700 nginx:nginx
532
- - update init script to use killproc -p
533
- - add reopen_logs command to init script
534
- - update init script to use nginx -q option
535
-
536
- * Sun Oct 31 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-2
537
- - Fix linking of perl module
538
-
539
- * Sun Oct 31 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.8.53-1
540
- - Update to new stable 0.8.53
541
-
542
- * Sat Jul 31 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.67-2
543
- - add Provides: webserver (bug #619693)
544
-
545
- * Sun Jun 20 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.67-1
546
- - Update to new stable 0.7.67
547
- - fix bugzilla #591543
548
-
549
- * Tue Jun 01 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.7.65-2
550
- - Mass rebuild with perl-5.12.0
551
-
552
- * Mon Feb 15 2010 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.65-1
553
- - Update to new stable 0.7.65
554
- - change ownership of logdir to root:root
555
- - add support for ipv6 (bug #561248)
556
- - add random_index_module
557
- - add secure_link_module
558
-
559
- * Fri Dec 04 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.7.64-1
560
- - Update to new stable 0.7.64