nginx-vl.spec 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331
  1. %bcond_with systemd
  2. # build mod_wsgi
  3. %bcond_with wsgi
  4. # build http_geoip_module
  5. %bcond_without geoip
  6. %bcond_without geoip2
  7. # build naxsi module
  8. %bcond_with naxsi
  9. # build modsecurity module
  10. %bcond_without modsecurity
  11. # build brotli module
  12. %bcond_without brotli
  13. %global nginx_modulesdir %{_libdir}/nginx/modules
  14. %global nginx_modconfdir %{_sysconfdir}/nginx/modules.d
  15. %define nginx_user www-data
  16. %define nginx_group %{nginx_user}
  17. %define nginx_home %{_localstatedir}/lib/nginx
  18. %define nginx_home_tmp %{nginx_home}/tmp
  19. %define nginx_home_cache %{nginx_home}/cache
  20. %define nginx_logdir %{_localstatedir}/log/nginx
  21. %define nginx_confdir %{_sysconfdir}/nginx
  22. %define nginx_datadir %{_datadir}/nginx
  23. %define nginx_webroot %{nginx_datadir}/html
  24. Summary: Robust, small and high performance http and reverse proxy server
  25. Summary(ja): 堅牢・軽量・高性能な HTTP およびリバースプロキシサーバ
  26. Name: nginx
  27. Group: servers
  28. %global nginx_version 1.24.0
  29. Version: %{nginx_version}
  30. # do not reset or decrease.
  31. Release: 22%{?_dist_release}%{?with_systemd:.systemd}
  32. Vendor: Project Vine
  33. Distribution: Vine Linux
  34. Packager: daisuke
  35. # BSD License (two clause)
  36. # http://www.freebsd.org/copyright/freebsd-license.html
  37. License: BSD
  38. URL: https://nginx.org/
  39. Source0: https://nginx.org/download/nginx-%{version}.tar.gz
  40. Source1: %{name}.init
  41. Source2: %{name}.logrotate
  42. Source3: nginx-virtual.conf.template
  43. Source4: nginx-ssl.conf
  44. Source5: %{name}.sysconfig
  45. Source10: nginx-vine.conf
  46. Source11: nginx-default-vine
  47. Source20: proxy_cache.conf
  48. Source21: nginx.service
  49. Source22: nginx-upgrade
  50. Source23: nginx-upgrade.8
  51. Source100: nginx-index.html
  52. Source101: poweredby-vine.png
  53. Source102: nginx-logo.png
  54. Source103: nginx-50x.html
  55. Source104: nginx-404.html
  56. %define ngx_fancyindex_version 0.4.3
  57. Source1000: ngx-fancyindex-%{ngx_fancyindex_version}.tar.gz
  58. %define nginx_accept_language_module_version 2f69842
  59. Source1010: giom-nginx_accept_language_module-%{nginx_accept_language_module_version}.tar.gz
  60. %define passenger_version 6.0.17
  61. Source1020: https://github.com/phusion/passenger/releases/download/release-%{passenger_version}/passenger-%{passenger_version}.tar.gz
  62. %define upstream_fair_version a18b409
  63. Source1030: gnosek-nginx-upstream-fair-%{upstream_fair_version}.tar.gz
  64. %define mod_wsgi_version 6975f0ec7eeb
  65. Source2000: lifeeth-mod_wsgi-%{mod_wsgi_version}.tar.bz2
  66. %define nginx_dav_ext_module_version 3.0.0
  67. Source2010: https://github.com/arut/nginx-dav-ext-module/archive/v%{nginx_dav_ext_module_version}.tar.gz#/nginx-dav-ext-module-%{nginx_dav_ext_module_version}.tar.gz
  68. %if %{with naxsi}
  69. %global with_naxsi 1
  70. %endif
  71. %global naxsi_version 0.56
  72. %global naxsi_srcversion untagged-afabfc163946baa8036f
  73. Source2020: https://github.com/nbs-system/naxsi/archive/%{naxsi_srcversion}.tar.gz#/naxsi-%{naxsi_srcversion}.tar.gz
  74. Source2021: naxsi_params
  75. %if %{with geoip2}
  76. %global with_geoip2 1
  77. %global geoip2_version 3.4
  78. Source2030: https://github.com/leev/ngx_http_geoip2_module/archive/%{geoip2_version}.tar.gz#/ngx_http_geoip2_module-%{geoip2_version}.tar.gz
  79. %endif
  80. %if %{with modsecurity}
  81. %global with_modsecurity 1
  82. %global modsecurity_version 1.0.3
  83. Source2040: https://github.com/SpiderLabs/ModSecurity-nginx/releases/download/v%{modsecurity_version}/modsecurity-nginx-v%{modsecurity_version}.tar.gz
  84. %endif
  85. %if %{with brotli}
  86. %global with_brotli 1
  87. %global brotli_version 1.0.0~rc
  88. %global brotli_commit 6e975bcb015f62e1f303054897783355e2a877dc
  89. Source2050: https://github.com/google/ngx_brotli/archive/%{brotli_commit}.tar.gz#/ngx_brotli-%{brotli_commit}.tar.gz
  90. %endif
  91. # removes -Werror in upstream build scripts. -Werror conflicts with
  92. # -D_FORTIFY_SOURCE=2 causing warnings to turn into errors.
  93. Patch0: 0001-remove-Werror-in-upstream-build-scripts.patch
  94. # downstream patch - fix PIDFile race condition (rhbz#1869026)
  95. # rejected upstream: https://trac.nginx.org/nginx/ticket/1897
  96. Patch1: 0002-fix-PIDFile-handling.patch
  97. # to fix https://github.com/gnosek/nginx-upstream-fair/pull/23
  98. Patch101: gnosek-nginx-upstream-fair-pull-23.patch
  99. Patch10000: CVE-2023-44487.patch
  100. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  101. BuildRequires: libboost-devel
  102. BuildRequires: libxcrypt-devel
  103. BuildRequires: libnsl2-devel
  104. BuildRequires: pcre2-devel
  105. BuildRequires: zlib-devel
  106. BuildRequires: openssl-devel
  107. BuildRequires: libxml2-devel
  108. BuildRequires: libxslt-devel
  109. BuildRequires: curl-devel
  110. BuildRequires: perl >= 2:5.34.0
  111. # for /usr/sbin/useradd
  112. Requires(pre): shadow-utils
  113. %if %{with systemd}
  114. BuildRequires: systemd
  115. Requires(post): systemd
  116. Requires(preun): systemd
  117. Requires(postun): systemd
  118. %else
  119. Requires(post): chkconfig
  120. # for /sbin/service
  121. Requires(preun): chkconfig, initscripts
  122. Requires(postun): initscripts
  123. %endif
  124. %if "%{_dist_release}" > "vl6"
  125. Requires(pre): www-common
  126. %endif
  127. Provides: webserver
  128. %description
  129. Nginx [engine x] is an HTTP(S) server, HTTP(S) reverse proxy and IMAP/POP3
  130. proxy server written by Igor Sysoev.
  131. %description -l ja
  132. Nginx [engine x/エンジンX] は Igor Sysoev により開発された以下の機能をもつ
  133. 堅牢・軽量・高性能なHTTPサーバかつリバースプロキシサーバです。
  134. - HTTP(S) サーバ
  135. - HTTP(S) リバースプロキシサーバ
  136. - IMAP/POP3 プロキシサーバ
  137. %package passenger
  138. Summary: mod_passenger for Nginx
  139. Summary(ja): Nginx用Passenger
  140. Version: %{passenger_version}
  141. Group: servers
  142. BuildRequires: ruby, rubygem-rake
  143. Requires: ruby, rubygem-rake
  144. BuildRequires: ruby-devel, ruby-rubygems
  145. Requires: ruby-rubygems
  146. Requires: %{name} = %{nginx_version}-%{release}
  147. %description passenger
  148. Nginx [engine x] is an HTTP(S) server, HTTP(S) reverse proxy and IMAP/POP3
  149. This package contains nginx server with passenger support.
  150. %description -l ja passenger
  151. Nginx [engine x/エンジンX] は Igor Sysoev により開発された以下の機能をもつ
  152. 堅牢・軽量・高性能なHTTPサーバかつリバースプロキシサーバです。
  153. - HTTP(S) サーバ
  154. - HTTP(S) リバースプロキシサーバ
  155. - IMAP/POP3 プロキシサーバ
  156. このパッケージには Passenger サポートを含んだ nginxサーバが入っています。
  157. %if %{with geoip}
  158. %package geoip
  159. Summary: Nginx HTTP geoip module
  160. Group: servers
  161. BuildRequires: GeoIP-devel
  162. Requires: %{name} = %{nginx_version}-%{release}
  163. Requires: GeoIP
  164. %description geoip
  165. %{summary}.
  166. %endif
  167. %package image-filter
  168. Summary: Nginx HTTP image filter module
  169. Group: servers
  170. BuildRequires: gd-devel
  171. Requires: %{name} = %{nginx_version}-%{release}
  172. Requires: gd
  173. %description image-filter
  174. %{summary}.
  175. %package perl
  176. Summary: Nginx HTTP perl module
  177. Group: servers
  178. BuildRequires: perl
  179. BuildRequires: perl(ExtUtils::Embed)
  180. Requires: %{name} = %{nginx_version}-%{release}
  181. Requires: perl >= 2:5.34.0
  182. %description perl
  183. %{summary}.
  184. %package xslt-filter
  185. Summary: Nginx XSLT module
  186. Group: servers
  187. BuildRequires: libxslt-devel
  188. Requires: %{name} = %{nginx_version}-%{release}
  189. %description xslt-filter
  190. %{summary}.
  191. %package mail
  192. Summary: Nginx mail modules
  193. Group: servers
  194. Requires: %{name} = %{nginx_version}-%{release}
  195. %description mail
  196. %{summary}.
  197. %package stream
  198. Summary: Nginx stream modules
  199. Group: servers
  200. Requires: %{name} = %{nginx_version}-%{release}
  201. %description stream
  202. %{summary}.
  203. %package dav-ext
  204. Summary: Nginx dav-ext modules
  205. Version: %{nginx_dav_ext_module_version}
  206. Group: servers
  207. Requires: %{name} = %{nginx_version}-%{release}
  208. %description dav-ext
  209. %{summary}.
  210. %if %{with geoip2}
  211. %package http-geoip2
  212. Summary: Nginx HTTP geoip2 modules
  213. Version: %{geoip2_version}
  214. Group: servers
  215. BuildRequires: libmaxminddb-devel
  216. Requires: %{name} = %{nginx_version}-%{release}
  217. %description http-geoip2
  218. %{summary}.
  219. %package stream-geoip2
  220. Summary: Nginx stream geoip2 modules
  221. Version: %{geoip2_version}
  222. Group: servers
  223. BuildRequires: libmaxminddb-devel
  224. Requires: %{name} = %{nginx_version}-%{release}
  225. Requires: %{name}-stream = %{nginx_version}-%{release}
  226. %description stream-geoip2
  227. %{summary}.
  228. %endif
  229. %if %{with naxsi}
  230. %package naxsi
  231. Summary: an open-source, high performance, low rules maintenance WAF for NGINX
  232. Summary(ja): NGiNXのためのOSS・高パフォーマンス・低メンテナンスコストなWAF
  233. Version: %{naxsi_version}
  234. Group: servers
  235. License: GPL3
  236. Requires: %{name} = %{nginx_version}-%{release}
  237. %description naxsi
  238. NAXSI means Nginx Anti XSS & SQL Injection.
  239. Technically, it is a third party nginx module, available as a package for
  240. many UNIX-like platforms. This module, by default, reads a small subset of
  241. simple (and readable) rules containing 99% of known patterns involved in
  242. website vulnerabilities. For example, <, | or drop are not supposed to be
  243. part of a URI.
  244. Being very simple, those patterns may match legitimate queries, it is
  245. the Naxsi's administrator duty to add specific rules that will whitelist
  246. legitimate behaviours. The administrator can either add whitelists manually
  247. by analyzing nginx's error log, or (recommended) start the project with an intensive auto-learning phase that will automatically generate whitelisting
  248. rules regarding a website's behaviour.
  249. In short, Naxsi behaves like a DROP-by-default firewall, the only task is
  250. to add required ACCEPT rules for the target website to work properly.
  251. %endif
  252. %if %{with modsecurity}
  253. %package modsecurity
  254. Summary: The ModSecurity-nginx connector
  255. Summary(ja): ModSecurity Nginxコネクター
  256. Version: %{modsecurity_version}
  257. Group: servers
  258. License: ASL 2.0
  259. BuildRequires: libmodsecurity-devel
  260. Requires: %{name} = %{nginx_version}-%{release}
  261. %description modsecurity
  262. The ModSecurity-nginx connector is the connection point between
  263. nginx and libmodsecurity (ModSecurity v3). Said another way, this
  264. project provides a communication channel between nginx and libmodsecurity.
  265. This connector is required to use LibModSecurity with nginx.
  266. %endif
  267. %if %{with brotli}
  268. %package brotli
  269. Summary: brotli compression module for Nginx
  270. Summary(ja): Nginx用brotli圧縮モジュール
  271. Version: %{brotli_version}
  272. Group: servers
  273. License: BSD
  274. BuildRequires: brotli-devel
  275. Requires: %{name} = %{nginx_version}-%{release}
  276. %description brotli
  277. ngx_brotli is a set of two nginx modules:
  278. - ngx_brotli filter module - used to compress responses on-the-fly,
  279. - ngx_brotli static module - used to serve pre-compressed files.
  280. %endif
  281. %debug_package
  282. %if %{with systemd}
  283. %define rundir /run
  284. %else
  285. %define rundir %{_localstatedir}/run
  286. %endif
  287. %prep
  288. %setup -q -a 1000 -a 1010 -a 1020 -a 1030 %{?with_wsgi:-a 2000} -a 2010 %{?with_naxsi:-a 2020} %{?with_geoip2:-a 2030} %{?with_modsecurity:-a 2040} %{?with_brotli:-a 2050}
  289. %patch10000 -p1
  290. %patch0 -p1
  291. %patch1 -p1
  292. # pushd passenger-%{passenger_version}/ext/
  293. # %patch100 -p2
  294. # popd
  295. pushd gnosek-nginx-upstream-fair-%{upstream_fair_version}
  296. %patch101 -p1
  297. popd
  298. pushd passenger-%{passenger_version}
  299. #patch1000 -p1
  300. popd
  301. %if %{with modsecurity}
  302. pushd modsecurity-nginx-v%{modsecurity_version}
  303. %endif
  304. %build
  305. # nginx does not utilize a standard configure script. It has its own
  306. # and the standard configure options cause the nginx configure script
  307. # to error out. This is is also the reason for the DESTDIR environment
  308. # variable. The configure script(s) have been patched (Patch1 and
  309. # Patch2) in order to support installing into a build environment.
  310. export DESTDIR=%{buildroot}
  311. CONFIGOPTS="\
  312. --user=%{nginx_user} \
  313. --group=%{nginx_group} \
  314. --prefix=%{nginx_datadir} \
  315. --sbin-path=%{_sbindir}/%{name} \
  316. --modules-path=%{nginx_modulesdir} \
  317. --conf-path=%{nginx_confdir}/%{name}.conf \
  318. --error-log-path=%{nginx_logdir}/error.log \
  319. --http-log-path=%{nginx_logdir}/access.log \
  320. --http-client-body-temp-path=%{nginx_home_tmp}/client_body \
  321. --http-proxy-temp-path=%{nginx_home_tmp}/proxy \
  322. --http-fastcgi-temp-path=%{nginx_home_tmp}/fastcgi \
  323. --pid-path=%{rundir}/%{name}.pid \
  324. --lock-path=%{_localstatedir}/lock/subsys/%{name} \
  325. --with-file-aio \
  326. --with-ipv6 \
  327. --with-http_ssl_module \
  328. --with-http_v2_module \
  329. --with-http_realip_module \
  330. --with-http_addition_module \
  331. --with-http_xslt_module=dynamic \
  332. --with-http_image_filter_module=dynamic \
  333. %if %{with geoip}
  334. --with-http_geoip_module=dynamic \
  335. %endif
  336. --with-http_sub_module \
  337. --with-http_dav_module \
  338. --with-http_flv_module \
  339. --with-http_mp4_module \
  340. --with-http_gunzip_module \
  341. --with-http_gzip_static_module \
  342. --with-http_auth_request_module \
  343. --with-http_random_index_module \
  344. --with-http_secure_link_module \
  345. --with-http_degradation_module \
  346. --with-http_stub_status_module \
  347. --with-http_perl_module=dynamic \
  348. --with-mail=dynamic \
  349. --with-mail_ssl_module \
  350. --with-stream=dynamic \
  351. --with-stream_ssl_preread_module \
  352. --add-module=ngx-fancyindex-%{ngx_fancyindex_version} \
  353. --add-module=giom-nginx_accept_language_module-%{nginx_accept_language_module_version} \
  354. --add-module=gnosek-nginx-upstream-fair-%{upstream_fair_version} \
  355. %if %{with wsgi}
  356. --add-module=lifeeth-mod_wsgi-%{mod_wsgi_version} \
  357. %endif
  358. --add-dynamic-module=nginx-dav-ext-module-%{nginx_dav_ext_module_version} \
  359. %if %{with naxsi}
  360. --add-dynamic-module=naxsi-%{naxsi_srcversion}/naxsi_src \
  361. %endif
  362. %if %{with geoip2}
  363. --add-dynamic-module=ngx_http_geoip2_module-%{geoip2_version} \
  364. %endif
  365. %if %{with modsecurity}
  366. --add-dynamic-module=modsecurity-nginx-v%{modsecurity_version} \
  367. %endif
  368. %if %{with brotli}
  369. --with-compat \
  370. --add-dynamic-module=ngx_brotli-%{brotli_commit} \
  371. %endif
  372. --add-dynamic-module=passenger-%{passenger_version}/src/nginx_module \
  373. %ifarch i686
  374. --with-cpu-opt=pentiumpro \
  375. --with-zlib-asm=pentiumpro \
  376. --with-md5-asm \
  377. --with-sha1-asm \
  378. %endif
  379. "
  380. ./configure \
  381. $CONFIGOPTS \
  382. --with-cc-opt="%{optflags}"
  383. make %{?_smp_mflags}
  384. %install
  385. rm -rf %{buildroot}
  386. make install DESTDIR=%{buildroot} INSTALLDIRS=vendor
  387. find %{buildroot} -type f -name .packlist -exec rm -f {} \;
  388. find %{buildroot} -type f -name perllocal.pod -exec rm -f {} \;
  389. find %{buildroot} -type f -empty -exec rm -f {} \;
  390. find %{buildroot} -type f -exec chmod 0644 {} \;
  391. find %{buildroot} -type f -name '*.so' -exec chmod 0755 {} \;
  392. chmod 0755 %{buildroot}%{_sbindir}/nginx
  393. %if %{with systemd}
  394. install -p -d -m 0755 %{buildroot}%{_unitdir}
  395. install -p -D -m 0644 %{SOURCE21} \
  396. %{buildroot}%{_unitdir}/nginx.service
  397. install -p -D -m 0755 %{SOURCE22} %{buildroot}%{_bindir}/nginx-upgrade
  398. install -p -D -m 0644 %{SOURCE23} %{buildroot}%{_mandir}/man8/nginx-upgrade.8
  399. %else
  400. %{__install} -p -D -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/%{name}
  401. %endif
  402. %{__install} -p -D -m 0644 %{SOURCE2} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
  403. sed -i -e 's|@rundir@|%{rundir}|g' %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
  404. %{__install} -p -D -m 0644 %{SOURCE5} %{buildroot}%{_sysconfdir}/sysconfig/%{name}
  405. %{__install} -p -d -m 0755 %{buildroot}%{nginx_confdir}/conf.d
  406. %{__install} -p -d -m 0755 %{buildroot}%{nginx_confdir}/sites.d
  407. %{__install} -p -m 0644 %{SOURCE3} %{buildroot}%{nginx_confdir}/sites.d/virtual.conf.template
  408. %{__install} -p -m 0644 %{SOURCE4} %{buildroot}%{nginx_confdir}/conf.d/ssl.conf
  409. %{__sed} \
  410. -e 's/__NGINXUSER__/%{nginx_user}/g' \
  411. %if %{with systemd}
  412. -e 's|/var/run/nginx.pid|/run/nginx.pid|g' \
  413. %endif
  414. %{SOURCE10} > %{buildroot}%{nginx_confdir}/nginx.conf
  415. %{__cp} %{buildroot}%{nginx_confdir}/nginx.conf %{buildroot}%{nginx_confdir}/nginx.conf.default
  416. %{__install} -p -m 0644 %{SOURCE11} %{buildroot}%{nginx_confdir}/sites.d/default
  417. %{__install} -p -m 0644 %{SOURCE20} %{buildroot}%{nginx_confdir}/conf.d/proxy_cache.conf
  418. %{__install} -p -d -m 0755 %{buildroot}%{nginx_home_cache}
  419. %{__install} -p -d -m 0755 %{buildroot}%{nginx_home_tmp}
  420. %{__install} -p -d -m 0755 %{buildroot}%{nginx_logdir}
  421. %{__install} -p -d -m 0755 %{buildroot}%{nginx_webroot}
  422. %{__install} -p -m 0644 %{SOURCE100} %{buildroot}%{nginx_webroot}/index.html
  423. %{__install} -p -m 0644 %{SOURCE101} %{buildroot}%{nginx_webroot}/poweredby.png
  424. %{__install} -p -m 0644 %{SOURCE102} %{buildroot}%{nginx_webroot}/nginx-logo.png
  425. %{__install} -p -m 0644 %{SOURCE103} %{buildroot}%{nginx_webroot}/50x.html
  426. %{__install} -p -m 0644 %{SOURCE104} %{buildroot}%{nginx_webroot}/404.html
  427. %{__install} -p -d -m 0755 %{buildroot}%{nginx_modulesdir}
  428. %{__install} -p -d -m 0755 %{buildroot}%{nginx_modconfdir}
  429. %if %{with wsgi}
  430. %{__install} -p -m 0644 \
  431. lifeeth-mod_wsgi-%{mod_wsgi_version}/conf/wsgi_vars \
  432. %{buildroot}%{nginx_confdir}
  433. cp -f lifeeth-mod_wsgi-%{mod_wsgi_version}/README README.mod_wsgi
  434. %endif
  435. # upstream fair module document
  436. cp -f gnosek-nginx-upstream-fair-%{upstream_fair_version}/README README.upstream_fair
  437. # document for nginx-dav-ext-module
  438. cp -f nginx-dav-ext-module-%{nginx_dav_ext_module_version}/LICENSE LICENSE.dav-ext-module
  439. cp -f nginx-dav-ext-module-%{nginx_dav_ext_module_version}/README.rst README.dav-ext-module.rst
  440. # configuration for dynamic modules
  441. %if %{with geoip}
  442. echo 'load_module "%{nginx_modulesdir}/ngx_http_geoip_module.so";' \
  443. > %{buildroot}%{nginx_modconfdir}/geoip.conf
  444. %endif
  445. echo 'load_module "%{nginx_modulesdir}/ngx_http_image_filter_module.so";' \
  446. > %{buildroot}%{nginx_modconfdir}/image-filter.conf
  447. echo 'load_module "%{nginx_modulesdir}/ngx_http_perl_module.so";' \
  448. > %{buildroot}%{nginx_modconfdir}/perl.conf
  449. echo 'load_module "%{nginx_modulesdir}/ngx_http_xslt_filter_module.so";' \
  450. > %{buildroot}%{nginx_modconfdir}/xslt-filter.conf
  451. echo 'load_module "%{nginx_modulesdir}/ngx_mail_module.so";' \
  452. > %{buildroot}%{nginx_modconfdir}/mail.conf
  453. echo 'load_module "%{nginx_modulesdir}/ngx_stream_module.so";' \
  454. > %{buildroot}%{nginx_modconfdir}/stream.conf
  455. echo 'load_module "%{nginx_modulesdir}/ngx_http_dav_ext_module.so";' \
  456. > %{buildroot}%{nginx_modconfdir}/dav-ext.conf
  457. echo 'load_module "%{nginx_modulesdir}/ngx_http_passenger_module.so";' \
  458. > %{buildroot}%{nginx_modconfdir}/passenger.conf
  459. %if %{with geoip2}
  460. # geoip2 module
  461. cp -f ngx_http_geoip2_module-%{geoip2_version}/LICENSE LICENSE.geoip2
  462. cp -f ngx_http_geoip2_module-%{geoip2_version}/README.md README.geoip2.md
  463. echo 'load_module "%{nginx_modulesdir}/ngx_http_geoip2_module.so";' \
  464. > %{buildroot}%{nginx_modconfdir}/http-geoip2.conf
  465. echo 'load_module "%{nginx_modulesdir}/ngx_stream_geoip2_module.so";' \
  466. > %{buildroot}%{nginx_modconfdir}/stream-geoip2.conf
  467. %endif
  468. %if %{with naxsi}
  469. # NAXSI module
  470. cp -f naxsi-%{naxsi_srcversion}/LICENSE LICENSE.naxsi
  471. cp -f naxsi-%{naxsi_srcversion}/README.md README.naxsi.md
  472. install -p -m0644 naxsi-%{naxsi_srcversion}/naxsi_config/naxsi_core.rules \
  473. %{buildroot}%{nginx_confdir}/
  474. install -p -m0644 %{SOURCE2021} %{buildroot}%{nginx_confdir}/naxsi_params
  475. echo 'load_module "%{nginx_modulesdir}/ngx_http_naxsi_module.so";' \
  476. > %{buildroot}%{nginx_modconfdir}/naxsi.conf
  477. %endif
  478. %if %{with modsecurity}
  479. # modsecurity module
  480. echo 'load_module "%{nginx_modulesdir}/ngx_http_modsecurity_module.so";' \
  481. > %{buildroot}%{nginx_modconfdir}/modsecurity.conf
  482. %endif
  483. %if %{with brotli}
  484. # modsecurity module
  485. cat <<EOF > %{buildroot}%{nginx_modconfdir}/brotli.conf
  486. load_module %{nginx_modulesdir}/ngx_http_brotli_filter_module.so;
  487. load_module %{nginx_modulesdir}/ngx_http_brotli_static_module.so;
  488. EOF
  489. %endif
  490. touch %{buildroot}%{nginx_confdir}/conf.d/virtual.conf
  491. # convert to UTF-8 all files that give warnings.
  492. for textfile in CHANGES
  493. do
  494. mv $textfile $textfile.old
  495. iconv --from-code ISO8859-1 --to-code UTF-8 --output $textfile $textfile.old
  496. rm -f $textfile.old
  497. done
  498. %clean
  499. rm -rf %{buildroot}
  500. %pre
  501. if [ -L %{_sbindir}/nginx ]; then
  502. update-alternatives --remove nginx %{_sbindir}/nginx.normal ||:
  503. update-alternatives --remove nginx %{_sbindir}/nginx.passenger ||:
  504. rm -f %{_sbindir}/nginx
  505. fi
  506. %post
  507. %if %{with systemd}
  508. %systemd_post nginx.service
  509. %else
  510. if [ $1 == 1 ]; then
  511. /sbin/chkconfig --add %{name}
  512. fi
  513. %endif
  514. %preun
  515. %if %{with systemd}
  516. %systemd_preun nginx.service
  517. %else
  518. if [ $1 = 0 -o -x /bin/systemctl ]; then
  519. /sbin/service %{name} stop >/dev/null 2>&1
  520. /sbin/chkconfig --del %{name}
  521. fi
  522. %endif
  523. %postun
  524. %if %{with systemd}
  525. %systemd_postun nginx.service
  526. if [ $1 -ge 1 ]; then
  527. /usr/bin/nginx-upgrade >/dev/null 2>&1 || :
  528. fi
  529. %else
  530. if [ $1 == 2 ]; then
  531. /sbin/service %{name} upgrade || :
  532. fi
  533. %endif
  534. %if %{with systemd}
  535. %if %{with geoip}
  536. %post geoip
  537. if [ $1 -eq 1 ]; then
  538. systemctl reload nginx.service >/dev/null 2>&1 || :
  539. fi
  540. %endif
  541. %post image-filter
  542. if [ $1 -eq 1 ]; then
  543. systemctl reload nginx.service >/dev/null 2>&1 || :
  544. fi
  545. %post perl
  546. if [ $1 -eq 1 ]; then
  547. systemctl reload nginx.service >/dev/null 2>&1 || :
  548. fi
  549. %post xslt-filter
  550. if [ $1 -eq 1 ]; then
  551. systemctl reload nginx.service >/dev/null 2>&1 || :
  552. fi
  553. %post mail
  554. if [ $1 -eq 1 ]; then
  555. systemctl reload nginx.service >/dev/null 2>&1 || :
  556. fi
  557. %post stream
  558. if [ $1 -eq 1 ]; then
  559. systemctl reload nginx.service >/dev/null 2>&1 || :
  560. fi
  561. %post dav-ext
  562. if [ $1 -eq 1 ]; then
  563. systemctl reload nginx.service >/dev/null 2>&1 || :
  564. fi
  565. %post http-geoip2
  566. if [ $1 -eq 1 ]; then
  567. systemctl reload nginx.service >/dev/null 2>&1 || :
  568. fi
  569. %post stream-geoip2
  570. if [ $1 -eq 1 ]; then
  571. systemctl reload nginx.service >/dev/null 2>&1 || :
  572. fi
  573. %if %{with naxsi}
  574. %post naxsi
  575. if [ $1 -eq 1 ]; then
  576. systemctl reload nginx.service >/dev/null 2>&1 || :
  577. fi
  578. %endif
  579. %if %{with modsecurity}
  580. %post modsecurity
  581. if [ $1 -eq 1 ]; then
  582. systemctl reload nginx.service >/dev/null 2>&1 || :
  583. fi
  584. %endif
  585. %if %{with brotli}
  586. %post brotli
  587. if [ $1 -eq 1 ]; then
  588. systemctl reload nginx.service >/dev/null 2>&1 || :
  589. fi
  590. %endif
  591. %endif
  592. %files
  593. %defattr(-,root,root,-)
  594. %license LICENSE
  595. %doc CHANGES README
  596. %doc README.upstream_fair
  597. %doc %{?with_wsgi:README.mod_wsgi}
  598. %{nginx_datadir}/
  599. %{_sbindir}/%{name}
  600. %{_mandir}/man3/%{name}.3pm.gz
  601. %if %{with systemd}
  602. %{_bindir}/nginx-upgrade
  603. %{_mandir}/man8/nginx-upgrade.8*
  604. %{_unitdir}/nginx.service
  605. %else
  606. %{_initrddir}/%{name}
  607. %endif
  608. %dir %{nginx_modulesdir}
  609. %dir %{nginx_modconfdir}
  610. %dir %{nginx_confdir}
  611. %dir %{nginx_confdir}/conf.d
  612. %config(noreplace) %{nginx_confdir}/conf.d/*.conf
  613. %ghost %config(noreplace) %{nginx_confdir}/conf.d/virtual.conf
  614. %config(noreplace) %{nginx_confdir}/sites.d/*
  615. %config(noreplace) %{nginx_confdir}/win-utf
  616. %config(noreplace) %{nginx_confdir}/%{name}.conf.default
  617. %config(noreplace) %{nginx_confdir}/mime.types.default
  618. %config(noreplace) %{nginx_confdir}/fastcgi_params
  619. %config(noreplace) %{nginx_confdir}/fastcgi_params.default
  620. %config(noreplace) %{nginx_confdir}/koi-win
  621. %config(noreplace) %{nginx_confdir}/koi-utf
  622. %config(noreplace) %{nginx_confdir}/%{name}.conf
  623. %config(noreplace) %{nginx_confdir}/mime.types
  624. %config(noreplace) %{nginx_confdir}/fastcgi.conf
  625. %config(noreplace) %{nginx_confdir}/fastcgi.conf.default
  626. %config(noreplace) %{nginx_confdir}/scgi_params
  627. %config(noreplace) %{nginx_confdir}/scgi_params.default
  628. %config(noreplace) %{nginx_confdir}/uwsgi_params
  629. %config(noreplace) %{nginx_confdir}/uwsgi_params.default
  630. %if %{with wsgi}
  631. %config(noreplace) %{nginx_confdir}/wsgi_vars
  632. %endif
  633. %config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
  634. %config(noreplace) %{_sysconfdir}/sysconfig/%{name}
  635. %attr(-,%{nginx_user},%{nginx_group}) %dir %{nginx_home}
  636. %attr(-,%{nginx_user},%{nginx_group}) %dir %{nginx_home_tmp}
  637. %attr(-,%{nginx_user},%{nginx_group}) %dir %{nginx_home_cache}
  638. %attr(-,%{nginx_user},%{nginx_group}) %dir %{nginx_logdir}
  639. %files passenger
  640. %defattr(-,root,root,-)
  641. %doc passenger-%{passenger_version}/doc/*.md
  642. %doc passenger-%{passenger_version}/doc/templates
  643. %doc passenger-%{passenger_version}/doc/images
  644. %config(noreplace) %{nginx_modconfdir}/passenger.conf
  645. %{nginx_modulesdir}/ngx_http_passenger_module.so
  646. %if %{with geoip}
  647. %files geoip
  648. %config(noreplace) %{nginx_modconfdir}/geoip.conf
  649. %{nginx_modulesdir}/ngx_http_geoip_module.so
  650. %endif
  651. %files image-filter
  652. %config(noreplace) %{nginx_modconfdir}/image-filter.conf
  653. %{nginx_modulesdir}/ngx_http_image_filter_module.so
  654. %files perl
  655. %config(noreplace) %{nginx_modconfdir}/perl.conf
  656. %{nginx_modulesdir}/ngx_http_perl_module.so
  657. %dir %{perl_vendorarch}/auto/%{name}
  658. %{perl_vendorarch}/%{name}.pm
  659. %{perl_vendorarch}/auto/%{name}/%{name}.so
  660. %files xslt-filter
  661. %config(noreplace) %{nginx_modconfdir}/xslt-filter.conf
  662. %{nginx_modulesdir}/ngx_http_xslt_filter_module.so
  663. %files mail
  664. %config(noreplace) %{nginx_modconfdir}/mail.conf
  665. %{nginx_modulesdir}/ngx_mail_module.so
  666. %files stream
  667. %config(noreplace) %{nginx_modconfdir}/stream.conf
  668. %{nginx_modulesdir}/ngx_stream_module.so
  669. %files dav-ext
  670. %license LICENSE.dav-ext-module
  671. %doc README.dav-ext-module.rst
  672. %config(noreplace) %{nginx_modconfdir}/dav-ext.conf
  673. %{nginx_modulesdir}/ngx_http_dav_ext_module.so
  674. %if %{with geoip2}
  675. %files http-geoip2
  676. %license LICENSE.geoip2
  677. %doc README.geoip2.md
  678. %{nginx_modulesdir}/ngx_http_geoip2_module.so
  679. %config(noreplace) %{nginx_modconfdir}/http-geoip2.conf
  680. %files stream-geoip2
  681. %license LICENSE.geoip2
  682. %doc README.geoip2.md
  683. %{nginx_modulesdir}/ngx_stream_geoip2_module.so
  684. %config(noreplace) %{nginx_modconfdir}/stream-geoip2.conf
  685. %endif
  686. %if %{with naxsi}
  687. %files naxsi
  688. %defattr(-,root,root,-)
  689. %license LICENSE.naxsi
  690. %doc README.naxsi.md
  691. %{nginx_modulesdir}/ngx_http_naxsi_module.so
  692. %config(noreplace) %{nginx_modconfdir}/naxsi.conf
  693. %config(noreplace) %{nginx_confdir}/naxsi_params
  694. %config(noreplace) %{nginx_confdir}/naxsi_core.rules
  695. %endif
  696. %if %{with modsecurity}
  697. %files modsecurity
  698. %defattr(-,root,root,-)
  699. %license modsecurity-nginx-v%{modsecurity_version}/LICENSE
  700. %doc modsecurity-nginx-v%{modsecurity_version}/README.md
  701. %{nginx_modulesdir}/ngx_http_modsecurity_module.so
  702. %config(noreplace) %{nginx_modconfdir}/modsecurity.conf
  703. %endif
  704. %if %{with brotli}
  705. %files brotli
  706. %config(noreplace) %{nginx_modconfdir}/brotli.conf
  707. %{nginx_modulesdir}/ngx_http_brotli_filter_module.so
  708. %{nginx_modulesdir}/ngx_http_brotli_static_module.so
  709. %endif
  710. %changelog
  711. * Mon Oct 16 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.0-22
  712. - added Patch10000 to fix CVE-2023-44487.
  713. * Thu Aug 31 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.0-21
  714. - added brotli module.
  715. * Thu Apr 27 2023 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.0-20
  716. - updated to 1.24.0.
  717. * Thu Oct 20 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.22.1-19
  718. - updated to 1.22.1.
  719. - updated passenger to 6.0.15.
  720. * Tue May 31 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.22.0-18
  721. - updated to 1.22.0.
  722. * Sat May 21 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.2-17
  723. - updated modsecurity-nginx to 1.0.3.
  724. * Fri Nov 19 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.2-16
  725. - rebuilt with perl-5.34.0.
  726. * Wed Nov 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.2-15
  727. - updated to 1.20.2.
  728. - updated passenger to 6.0.12.
  729. - dropped Patch1000: fixed in upstream.
  730. * Fri Nov 12 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.1-14
  731. - fixed path to nginx.pid.
  732. - fixed systemd-unit.
  733. - dropped Patch1000.
  734. - imported Patch1000 from upstream.
  735. * Thu Oct 07 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.1-13
  736. - rebuilt with openssl-3.0.0.
  737. * Sun Jul 11 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.1-12
  738. - updated ModSecurity-nginx to 1.0.2.
  739. - dropped Patch2040.
  740. * Fri May 28 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.1-11
  741. - updated to 1.20.1.
  742. * Wed Apr 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.20.0-10
  743. - updated to 1.20.0.
  744. * Wed Feb 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.18.0-9
  745. - updated Patch2040.
  746. * Wed Oct 14 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.18.0-8
  747. - added Patch2040 to fix several bugs.
  748. * Tue May 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.18.0-7
  749. - updated to 1.18.0.
  750. - disabled NAXSI as default.
  751. * Sun Apr 05 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.1-6
  752. - added systemd support (disabled as default).
  753. * Mon Mar 09 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.1-5
  754. - updated modsecurity module to 1.0.1.
  755. - dropped Patch2040 and 2041: fixed in upstream.
  756. * Wed Nov 13 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.1-4
  757. - added Patch2041.
  758. * Thu Oct 24 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.1-3
  759. - added Patch2040.
  760. * Wed Oct 23 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.1-2
  761. - added ModSecurity module.
  762. * Sat Aug 24 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.1-1
  763. - updated to 1.16.1.
  764. - made to install NAXSI as a dynamic module.
  765. * Wed Aug 07 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.0-3
  766. - added NAXSI module.
  767. * Sun May 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.0-2
  768. - rebuilt with perl-5.26.
  769. * Sun May 05 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.16.0-1
  770. - updated to 1.16.0.
  771. - updated passenger to 6.0.2.
  772. - updated nginx-dav-ext-module to 3.0.0.
  773. - dropped Patch1001: fixed in upstream.
  774. * Tue Nov 06 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.15.5-1
  775. - updated to 1.15.5.
  776. - updated passenger to 5.3.6.
  777. - updated ngx_fancyindex_version to 0.4.3.
  778. * Mon Mar 05 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.13.9-1
  779. - updated to 1.13.9.
  780. - updated ngx-fancyindex to 0.4.2.
  781. - updated nginx-accept_language_module to git HEAD.
  782. - updated nginx-upstream-fair to git HEAD.
  783. - updated passenger to 5.2.1.
  784. - added Source2010 (nginx-dav-ext-module).
  785. - enabled --with-stream and --with-stream_ssl_preread_module.
  786. * Fri Sep 8 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.13.5-1
  787. - updated to 1.13.5
  788. - updated passenger to 5.1.8
  789. * Fri Aug 11 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.13.4-1
  790. - updated to 1.13.4
  791. - updated passenger to 5.1.7
  792. * Fri Jul 14 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.13.3-1
  793. - updated to 1.13.3
  794. * Sat Jul 1 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.13.2-1
  795. - updated to 1.13.2
  796. * Sun Jun 18 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.13.1-1
  797. - updated to 1.13.1
  798. - updated passenger to 5.1.5
  799. * Wed Apr 26 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.13.0-1
  800. - updated to 1.13.0
  801. * Wed Apr 5 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.11.13-1
  802. - updated to 1.11.13
  803. * Sat Mar 25 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.11.12-1
  804. - updated to 1.11.12
  805. * Tue Mar 7 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.11.10-1
  806. - updated to 1.11.10
  807. - updated passenger to 5.1.2
  808. * Tue Jan 31 2017 Munehiro Yamamoto <munepi@vinelinux.org> 1.11.9-1
  809. - updated to 1.11.9
  810. * Wed Dec 28 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.11.8-1
  811. - updated to 1.11.8
  812. * Sat Nov 19 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.11.6-1
  813. - updated to 1.11.6
  814. - applied gnosek-nginx-upstream-fair-pull-23.patch against nginx-1.11.6
  815. * Mon Sep 5 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.11.3-1
  816. - updated to 1.11.3
  817. - updated passenger to 5.0.30
  818. * Fri Sep 02 2016 Toshiaki Ara <ara_t@384.jp> 1.10.1-2
  819. - rebuild with gcc-5.4.0
  820. * Tue Jun 7 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.10.1-1
  821. - updated to 1.10.1.
  822. - updated passenger to 5.0.28.
  823. * Wed Apr 20 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.15-1
  824. - updated to 1.9.15
  825. * Thu Apr 7 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.14-1
  826. - updated to 1.9.14
  827. - updated passenger to 5.0.27
  828. * Wed Apr 6 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.13-1
  829. - new upstream release
  830. * Mon Mar 14 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.9.12-1
  831. - updated to 1.9.12.
  832. - updated passenger to 5.0.26.
  833. * Wed Feb 17 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.11-1
  834. - new upstream release
  835. * Wed Feb 3 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.10-1
  836. - update to 1.9.10
  837. - update passenger to 5.0.24
  838. * Sun Jan 10 2016 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.9-2
  839. - update passenger to 5.0.23
  840. * Sun Dec 20 2015 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.9-1
  841. - new upstream release
  842. * Sat Dec 5 2015 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.7-1
  843. - new upstream release
  844. * Sat Oct 10 2015 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.5-1
  845. - new upstream release
  846. * Sun Aug 23 2015 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.4-1
  847. - new upstream release
  848. * Thu Jul 16 2015 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.3-1
  849. - update to 1.9.3
  850. - update passenger to 5.0.11
  851. * Thu Jun 25 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.9.2-2
  852. - updated Source4 (ssl.conf).
  853. * Wed Jun 17 2015 Munehiro Yamamoto <munepi@vinelinux.org> 1.9.2-1
  854. - update to 1.9.2
  855. - update passenger to 5.0.10
  856. - update ngx-fancyindex to 0.3.5
  857. * Thu Sep 25 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.6.2-1
  858. - update to 1.6.2
  859. - update passenger to 4.0.52
  860. * Fri Aug 08 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.6.1-1
  861. - new upstream release
  862. * Mon Jun 30 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.6.0-3
  863. - rebuild with new environment
  864. * Mon Jun 23 2014 Daisuke SUZUKI <daisuke@vinelinux.org> 1.6.0-2
  865. - update passenger to 4.0.45
  866. * Fri Apr 25 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0-1
  867. - update to 1.6.0 (stable)
  868. * Thu Feb 20 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.10-2
  869. - update fancyindex to 0.3.3
  870. * Wed Feb 12 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.10-1
  871. - update to 1.5.10
  872. - update passenger to 4.0.37
  873. * Sat Jan 04 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.5.6-2
  874. - rebuilt with GeoIP-1.6.0.
  875. - added Patch100.
  876. * Tue Oct 29 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.6-1
  877. - update to 1.5.6
  878. - update passenger to 4.0.21
  879. * Wed Oct 02 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.4.1-2
  880. - rebuilt with gd-2.1.0.
  881. * Wed May 08 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.1-1
  882. - update to 1.4.1
  883. * Mon Apr 29 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.0-1
  884. - update to 1.4.0
  885. - enable SPDY module
  886. * Wed Feb 13 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.7-1
  887. - new upstream release
  888. - update passenger to 3.0.19
  889. - update ngx-fancyindex to upstream git master
  890. * Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-1
  891. - new upstream release
  892. - update passenger to 3.0.17
  893. * Wed Oct 24 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-3
  894. - rebuild with pcre-8.31
  895. * Tue Oct 09 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.4-2
  896. - added http_geoip_module.
  897. * Tue Sep 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-1
  898. - update to 1.2.4
  899. * Thu Jul 19 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2-1
  900. - update to 1.2.2
  901. * Thu Jun 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.1-1
  902. - update to 1.2.1
  903. - change nginx user from nginx to www-data
  904. - R(pre): www-common
  905. * Wed Apr 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.0-1
  906. - update to 1.2.0
  907. - update passenger to 3.0.12
  908. - drop http_upstream_keepalive
  909. * Mon Mar 19 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.14-1
  910. - new upstream release
  911. * Thu Feb 23 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.12-1
  912. - update to 1.0.12
  913. * Tue Jan 10 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.11-1
  914. - update to 1.0.11
  915. - update passenger to 3.0.11
  916. * Mon Nov 21 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.10-1
  917. - update to 1.0.10
  918. * Tue Sep 27 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-2
  919. - update passenger to 3.0.9
  920. * Tue Aug 30 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.6-1
  921. - update to 1.0.6
  922. * Thu Jun 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.4-1
  923. - update to 1.0.4
  924. * Wed May 18 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-3
  925. - add gnosek-nginx-upstream-fair module
  926. - add ngx_http_upstream_keepalive module
  927. * Wed May 11 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-2
  928. - add nginx-passenger sub pakckage
  929. - use alternatives to choose nginx with or without passenger
  930. - add BR: ruby, rubygems, rubygem-rake
  931. * Wed May 11 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.2-1
  932. - update to 1.0.2
  933. * Wed May 04 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.1-1
  934. - update to 1.0.1
  935. * Sun May 01 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-2
  936. - add bcond_with wsgi for mod_wsgi
  937. - add bcond_with passenger
  938. - you need to install rake.gem to build with this option.
  939. - add Provides: webserver
  940. * Tue Apr 12 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.0.0-1
  941. - new upstream release 1.0.0!
  942. * Sun Mar 27 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.54-2
  943. - rebuild with perl-5.12.3
  944. * Mon Jan 17 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.54-1
  945. - update to 0.8.54
  946. * Sun Nov 28 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.53-1
  947. - update to 0.8.53
  948. - add nginx_accept_language_module
  949. * Fri Sep 24 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.50-1
  950. - update to 0.8.50
  951. - update ngx-fancyindex to 0.3
  952. - add BR: libxml2-devel, libxslt-devel
  953. - add scgi_params* and uwsgi_params* to %%files
  954. * Sat Apr 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 0.8.35-1
  955. - update to 0.8.35 (development version)
  956. - add sites.d/ to store vitualhost settings
  957. - split out default server settings to sites.d/default
  958. - add fancyindex module
  959. * Fri Dec 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.63-1
  960. - new upstream release
  961. * Sun Sep 20 2009 Shu KONNO <owa@bg.wakwak.com> 0.7.62-1
  962. - update to 0.7.62 (included security fix: VU#180065)
  963. * Wed Aug 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.61-4
  964. - fix typo
  965. * Thu Aug 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.61-3
  966. - add translated descriptions
  967. * Sat Jul 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.61-2
  968. - update 404.html/50x.html to use powered by vine logo.
  969. * Wed Jul 15 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 0.7.61-1
  970. - initial build for Vine Linux
  971. - update to 0.7.61
  972. * Sun May 17 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.36-2
  973. - init script updates from Gena Makhomed
  974. - remove nginx-upstream-fair
  975. * Sat Apr 11 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.36-1
  976. - update to 0.6.36
  977. * Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.35-3
  978. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  979. * Thu Feb 19 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.35-2
  980. - rebuild
  981. * Thu Feb 19 2009 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.35-1
  982. - update to 0.6.35
  983. * Sat Jan 17 2009 Tomas Mraz <tmraz@redhat.com> - 0.6.34-2
  984. - rebuild with new openssl
  985. * Tue Dec 30 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.34-1
  986. - update to 0.6.34
  987. * Thu Dec 4 2008 Michael Schwendt <mschwendt@fedoraproject.org> - 0.6.33-2
  988. - Fix inclusion of /usr/share/nginx tree => no unowned directories.
  989. * Sun Nov 23 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.33-1
  990. - update to 0.6.33
  991. * Tue Jul 22 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.32-1
  992. - update to 0.6.32
  993. - nginx now supports DESTDIR so removed the patches that enabled it
  994. * Mon May 26 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.31-3
  995. - init script fixes
  996. - resolve 'listen 80 default' [#447873]
  997. * Mon May 12 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.31-2
  998. - update to 0.6.31
  999. * Sun May 11 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.6.30-2
  1000. - upate to new upstream stable branch 0.6
  1001. - added 3rd party module nginx-upstream-fair
  1002. - added default webpages
  1003. * Sun Apr 20 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.5.35-2
  1004. - update init script to match recommended guidelines
  1005. - add /etc/nginx/conf.d support [#443280]
  1006. - use /etc/sysconfig/nginx to determine nginx.conf [#442708]
  1007. * Tue Mar 18 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.5.35-3
  1008. - add Requires for versioned perl (libperl.so)
  1009. - drop silly file Requires
  1010. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.5.35-2
  1011. - Autorebuild for GCC 4.3
  1012. * Sat Jan 19 2008 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.5.35-1
  1013. - update to 0.5.35
  1014. * Sat Dec 15 2007 Jeremy Hinegardner <jeremy at hinegardner dot org> - 0.5.34-1
  1015. - update to 0.5.34
  1016. * Wed Dec 05 2007 Release Engineering <rel-eng at fedoraproject dot org> - 0.5.33-2
  1017. - Rebuild for deps
  1018. * Sun Nov 11 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.33-1
  1019. - update to 0.5.33
  1020. * Mon Sep 24 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.32-1
  1021. - updated to 0.5.32
  1022. - fixed rpmlint UTF-8 complaints.
  1023. * Sat Aug 18 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.31-2
  1024. - added --with-http_stub_status_module build option.
  1025. - added --with-http_sub_module build option.
  1026. - added use of pcre-config --cflags
  1027. * Fri Aug 17 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.31-1
  1028. - Update to 0.5.31
  1029. - specify license is BSD
  1030. * Sat Aug 11 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.30-2
  1031. - Add BuildRequires: perl-devel - fixing rawhide build
  1032. * Mon Jul 30 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.30-1
  1033. - Update to 0.5.30
  1034. * Tue Jul 24 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.29-1
  1035. - Update to 0.5.29
  1036. * Wed Jul 18 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.28-1
  1037. - Update to 0.5.28
  1038. * Mon Jul 09 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.27-1
  1039. - Update to 0.5.27
  1040. * Mon Jun 18 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.26-1
  1041. - Update to 0.5.26
  1042. * Sat Apr 28 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.19-1
  1043. - Update to 0.5.19
  1044. * Mon Apr 02 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.17-1
  1045. - Update to 0.5.17
  1046. * Mon Mar 26 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.16-1
  1047. - Update to 0.5.16
  1048. - add ownership of /usr/share/nginx/html (#233950)
  1049. * Fri Mar 23 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.15-3
  1050. - fixed package review bugs (#235222) given by ruben@rubenkerkhof.com
  1051. * Thu Mar 22 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.15-2
  1052. - fixed package review bugs (#233522) given by kevin@tummy.com
  1053. * Thu Mar 22 2007 Jeremy Hinegardner <jeremy@hinegardner.org> - 0.5.15-1
  1054. - create patches to assist with building for Fedora
  1055. - initial packaging for Fedora