nginx-vl.spec 36 KB

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