aboutsummaryrefslogtreecommitdiff
path: root/www/nginx
Commit message (Collapse)AuthorAgeFilesLines
* Update from 4.0.52 to 4.0.53:Sergey A. Osokin2014-10-043-5/+5
| | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> * Upgraded the preferred Nginx version to 1.6.2. * Improved RVM gemset autodetection. * Fixed some Ruby 2.2 compatibility issues. </ChangeLog> Notes: svn path=/head/; revision=369965
* Update from 4.0.50 to 4.0.52:Sergey A. Osokin2014-10-013-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> * Fixed a null termination bug when autodetecting application types. * Node.js apps can now also trigger the inverse port binding mechanism by passing `'/passenger'` as argument. This was introduced in order to be able to support the Hapi.js framework. Please read http://stackoverflow.com/questions/20645231/phusion-passenger-error-http-server-listen-was-called-more-than-once/20645549 for more information regarding Hapi.js support. * It is now possible to abort Node.js WebSocket connections upon application restart. Please refer to https://github.com/phusion/passenger/wiki/Phusion-Passenger:-Node.js-tutorial#restarting_apps_that_serve_long_running_connections for more information. Closes GH-1200. * Passenger Standalone no longer automatically resolves symlinks in its paths. * `passenger-config system-metrics` no longer crashes when the system clock is set to a time in the past. Closes GH-1276. * `passenger-status`, `passenger-memory-stats`, `passenger-install-apache2-module` and `passenger-install-nginx-module` no longer output ANSI color codes by default when STDOUT is not a TTY. Closes GH-487. * `passenger-install-nginx-module --auto` is now all that's necessary to make it fully non-interactive. It is no longer necessary to provide all the answers through command line parameters. Closes GH-852. * Minor contribution by Alessandro Lenzen. </ChangeLog> Notes: svn path=/head/; revision=369682
* Update patch for third party upload module.Sergey A. Osokin2014-10-011-6/+17
| | | | | | | PR: 193891 Notes: svn path=/head/; revision=369681
* Update CPE_VENDOR.Sergey A. Osokin2014-09-261-1/+1
| | | | Notes: svn path=/head/; revision=369298
* Update third-party rtmp module from 1.1.4 to 1.1.5.Sergey A. Osokin2014-09-193-3/+82
| | | | | | | | | | Fix compilation issue (1). Do not bump PORTREVISION. Obtained from: https://github.com/arut/nginx-rtmp-module/commit/dd5f2aa117c617e1f0fde26f8fd58903be2d85e8.patch (1) Notes: svn path=/head/; revision=368537
* OPTIONS_SINGLE must have one value selected at all time, let's guess that MP4Mathieu Arnold2014-09-171-2/+2
| | | | | | | | | is optional and switch to OPTIONS_RADIO. Sponsored by: Absolight Notes: svn path=/head/; revision=368382
* Security update from 1.6.1 to 1.6.2.Sergey A. Osokin2014-09-162-4/+3
| | | | | | | | | | | | | | | | | | | | <ChangeLog> *) Security: it was possible to reuse SSL sessions in unrelated contexts if a shared SSL session cache or the same TLS session ticket key was used for multiple "server" blocks (CVE-2014-3616). Thanks to Antoine Delignat-Lavaud. *) Bugfix: requests might hang if resolver was used and a DNS server returned a malformed response; the bug had appeared in 1.5.8. *) Bugfix: requests might hang if resolver was used and a timeout occurred during a DNS request. </ChangeLog> Notes: svn path=/head/; revision=368340
* Update from 4.0.49 to 4.0.50:Sergey A. Osokin2014-08-293-5/+5
| | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> * Fixed a potential heap corruption bug. * Added Union Station support for Rails 4.1. </ChangeLog> Notes: svn path=/head/; revision=366502
* Convert to USES=pgsqlBaptiste Daroussin2014-08-251-1/+1
| | | | Notes: svn path=/head/; revision=366069
* Update from 4.0.48 to 4.0.49:Sergey A. Osokin2014-08-223-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> * Upgraded the preferred Nginx version to 1.6.1. * Fixed a crash that may be triggered by the `passenger_max_requests` feature. * Introduced the `spawn_failed` hook, which is called when an application process fails to spawn. You could use this hook to setup an error notification system. Closes GH-1252. * Fonts, RSS and XML are now gzip-compressed by default in Phusion Passenger Standalone. Thanks to Jacob Elder. Closes GH-1254. * Fixed some user and group information lookup issues. Closes GH-1253. * Fixed some request handling crashes. Closes GH-1250. * Fixed some compilation problems on Gentoo. Closes GH-1261. * Fixed some compilation problems on Solaris. Closes GH-1260. </ChangeLog> Notes: svn path=/head/; revision=365702
* Bump PORTREVISION on all ports that depend on net/GeoIP forAdam Weinberger2014-08-111-0/+1
| | | | | | | | | r364627. Approved by: portmgr (not really, but touches unstaged ports) Notes: svn path=/head/; revision=364628
* Update third-party modsecurity module from 2.7.5 to latest version 2.8.0.Sergey A. Osokin2014-08-104-19/+34
| | | | Notes: svn path=/head/; revision=364551
* Update from 4.0.45 to 4.0.48:Sergey A. Osokin2014-08-103-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. Add CPE information. <ChangeLog> Release 4.0.48 -------------- * Fixed a race condition while determining what user an application should be executed as. This bug could lead to applications being run as the wrong user. Closes GH-1241. * [Standalone] Improved autodetection of Rails asset pipeline files. This prevents Standalone from incorrectly setting caching headers on non-asset pipeline files. Closes GH-1225. * Fixed compilation problems on CentOS 5. Thanks to J. Smith. Closes GH-1247. * Fixed compilation problems on OpenBSD. * Fixed compatibility with Ruby 1.8.5. Release 4.0.47 -------------- * [Enterprise] Fixed a bug in Flying Passenger's `--max-preloader-idle-time` option. Release 4.0.46 -------------- * Further improved Node.js and Socket.io compatibility. * Sticky session cookies have been made more reliable. * Fixed WebSocket upgrade issues on Firefox. Closes GH-1232. * The Python application loader now inserts the application root into `sys.path`. The fact that this was not done previously caused a lot of confusion amongst Python users, who wondered why their `passenger_wsgi.py` could not import any modules from the same directory. * Fixed a compatibility problem with Django, which could cause Django apps to freeze indefinitely. Closes GH-1215. * Logging of application spawning errors has been much improved. Full details about the error, such as environment variables, are saved to a private log file. In the past, these details were only viewable in the browser. This change also fixes a bug on Phusion Passenger Enterprise, where enabling Deployment Error Resistance causes error messages to get lost. Closes GH-1021 and GH-1175. * Fixed a regression in Node.js support. When a Node.js app is deployed on a HTTPS host, the `X-Forwarded-Proto` header wasn't set in 4.0.45. Closes GH-1231. * Passenger Standalone no longer, by default, loads shell startup files before loading the application. This is because Passenger Standalone is often invoked from the shell anyway. Indeed, loading shell startup files again can interfere with any environment variables already set in the invoking shell. You can still tell Passenger Standalone to load shell startup files by passing `--load-shell-envvars`. Passenger for Apache and Passenger for Nginx still load shell startup files by default. * Passenger Standalone now works properly when the HOME environment variable isn't set. Closes GH-713. * Passenger Standalone's `package-runtime` command has been removed. It has been broken for a while and has nowadays been obsolete by our automatic [binary generation system](https://github.com/phusion/passenger_autobuilder). Closes GH-1133. * The `passenger_startup_file` option now also works on Python apps. Closes GH-1233. * If you are a [Union Station](https://www.unionstationapp.com) customer, then Phusion Passenger will now also log application spawning errors to Union Station. This data isn't shown in the Union Station interface yet, but it will be implemented in the future. * Fixed compilation problems on OmniOS and OpenIndiana. Closes GH-1212. * Fixed compilation problems when Nginx is configured with OpenResty. Thanks to Yichun Zhang. Closes GH-1226. * Fixed Nginx HTTP POST failures on ARM platforms. Thanks to nocelic for the fix. Closes GH-1151. * Documentation contributions by Tim Bishop and Tugdual de Kerviler. * Minor Nginx bug fix by Feng Gu. Closes GH-1235. </ChangeLog> Notes: svn path=/head/; revision=364549
* Add CPE information.Sergey A. Osokin2014-08-101-0/+5
| | | | Notes: svn path=/head/; revision=364497
* Update from 1.6.0 to 1.6.1.Sergey A. Osokin2014-08-092-4/+3
| | | | | | | | | | | | | | | | | | | | | <ChangeLog> *) Security: pipelined commands were not discarded after STARTTLS command in SMTP proxy (CVE-2014-3556); the bug had appeared in 1.5.6. Thanks to Chris Boulton. *) Bugfix: the $uri variable might contain garbage when returning errors with code 400. Thanks to Sergey Bobrov. *) Bugfix: in the "none" parameter in the "smtp_auth" directive; the bug had appeared in 1.5.6. Thanks to Svyatoslav Nikolsky. </ChangeLog> Notes: svn path=/head/; revision=364460
* net/openldap24-*:Tijl Coosemans2014-07-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Convert to USES=libtool and bump dependent ports - Avoid USE_AUTOTOOLS - Don't use PTHREAD_LIBS - Use MAKE_CMD databases/glom: - Drop :keepla - Add INSTALL_TARGET=install-strip databases/libgda4* databases/libgda5*: - Convert to USES=libtool and bump dependent ports - USES=tar:xz - Use INSTALL_TARGET=install-strip - Use @sample databases/libgdamm: - Drop :keepla - USES=tar:bzip2 - Use INSTALL_TARGET=install-strip databases/libgdamm5: - Add INSTALL_TARGET=install-strip - Drop --enable-static (inherited from old repocopy) devel/anjuta x11-toolkits/py-gnome-extras: - Drop :keepla dns/powerdns dns/powerdns-devel: - Convert to USES=libtool - Add INSTALL_TARGET=install-strip - Disable static modules - Stop creating library symlinks with .0 suffix, not needed for dynamically opened modules mail/dovecot2: - Add USES=libtool mail/dovecot2-pigeonhole: - Drop CONFIGURE_TARGET (incorrect for Dragonfly) - Add USES=libtool and INSTALL_TARGET=install-strip math/gnumeric: - USES=libtool tar:xz Approved by: portmgr (implicit, bump unstaged ports) Notes: svn path=/head/; revision=362835
* - Switch devel/google-perftools to USES=libtool, drop .la filesDmitry Marakasov2014-06-231-1/+1
| | | | | | | | | - Bump dependent ports as .so version has changed Approved by: portmgr blanket Notes: svn path=/head/; revision=358946
* Remove needless empty string, introduced in r357965.Sergey A. Osokin2014-06-201-1/+0
| | | | Notes: svn path=/head/; revision=358544
* Update from 4.0.44 to 4.0.45:Sergey A. Osokin2014-06-203-5/+5
| | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. Notes: svn path=/head/; revision=358542
* Updated syslog support and upstream_sticky options to re-enable them.Erwin Lansing2014-06-162-9/+19
| | | | | | | | | PR: 189391 Submitted by: dgeo@centrale-marseille.fr Approved by: maintainer timeout Notes: svn path=/head/; revision=357965
* Bump PORTREVISION on everything that depends on devel/apr1 due to theTijl Coosemans2014-06-121-0/+1
| | | | | | | | | library version change. Approved by: portmgr (implicit) Notes: svn path=/head/; revision=357574
* Remove all the bootstrap files (.bs) from the plists.Mathieu Arnold2014-06-101-3/+0
| | | | | | | | | | | | | Starting with perl 5.20, they're not installed any more if empty, and on FreeBSD, they're (always ?) empty. PR: 190681 Submitted by: mat Exp-Run by: antoine Sponsored by: Absolight Notes: svn path=/head/; revision=357300
* Multiple third-party modules as well as repos have been moved from agentzh ↵Sergey A. Osokin2014-06-023-64/+64
| | | | | | | | | | | | | and chaoslawful to openresty and renamed accordingly. Do not dump PORTREVISION. PR: 190074 Notes: svn path=/head/; revision=356210
* Update third-party rtmp module from 1.1.2 to 1.1.4.Sergey A. Osokin2014-06-022-4/+4
| | | | | | | Remove whitespaces. Notes: svn path=/head/; revision=356208
* Update from 4.0.41 to 4.0.44:Sergey A. Osokin2014-06-023-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> Release 4.0.44 -------------- * The issue tracker has now been moved from Google Code to Github. Before version 4.0.44 (May 29 2014, commit 3dd0964c9f4), all issue numbers referred to Google Code. From now on, all issue numbers will refer to Github Issues. * Fixed compilation problems on OS X Lion and OS X Mountain Lion. * On Ruby, fixed `nil` being frozen on accident in some cases. See issue #1192. Release 4.0.43 -------------- * Introduced a new command `passenger-config list-instances`, which prints all running Phusion Passenger instances. * Introduced a new command `passenger-config system-metrics, which displays metrics about the system such as the total CPU and memory usage. * Fixed some compilation problems caused by the compiler capability autodetector. * System metrics such as total CPU usage and memory usage, are now sent to [Union Station](https://www.unionstationapp.com) in preparation for future features. Release 4.0.42 -------------- * [Nginx] Upgraded the preferred Nginx version to 1.6.0. * [Nginx] Fixed compatibility with Nginx 1.7.0. * [Standalone] The MIME type for .woff files has been changed to application/font-woff. Fixes issue #1071. * There are now APT packages for Ubuntu 14.04. At the same time, packages for Ubuntu 13.10 have been abandoned. * Introduced a new command, `passenger-config build-native-support`, for ensuring that the native_support library for the current Ruby interpreter is built. This is useful in system provisioning scripts. * For security reasons, friendly error pages (those black/purple pages that shows the error message, backtrace and environment variable dump when an application fails to start) are now disabled by default when the application environment is set to 'staging' or 'production'. Fixes issue #1063. * Fixed some compilation warnings on Ubuntu 14.04. * Fixed some compatibility problems with Rake 10.2.0 and later. See [Rake issue 274](https://github.com/jimweirich/rake/issues/274). * Improved error handling in [Union Station](https://www.unionstationapp.com) support. * Data is now sent to Union Station on a more frequent basis, in order to make new data show up more quickly. * Information about the code revision is now sent to Union Station, which will be used in the upcoming deployment tracking feature in Union Station 2. </ChangeLog> Notes: svn path=/head/; revision=356191
* Update from 1.4.7 to 1.6.0.Sergey A. Osokin2014-05-042-4/+7
| | | | | | | | | | | | | Temporary disable third-party modules and patches: o http_upstream_sticky o postgres o syslog_support o tcp_proxy ChangeLog: http://nginx.org/en/CHANGES-1.6 Notes: svn path=/head/; revision=352966
* The FreeBSD x11@ and graphics team proudly presentsNiclas Zeising2014-04-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a zeising, kwm production, with help from dumbbell, bdrewery: NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE This update switches over to use the new xorg stack by default on FreeBSD 9 and 10 stable, on osversions where vt(9) is available. It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in /etc/make.conf . FreeBSD 8-STABLE and released versions of FreeBSD still use the old version. A package repository with binary packages for new xorg will be available soon. This patch also contains updates of libxcb and related ports, pixman, as well as some drivers and utilities. Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due to xserver version change. Apart from these updates, the way shared libraries are handled has been changed for all xorg ports, as well as libxml2 and freetype, which means ltverhack is gone and as a consequence shared libraries have been bumped. The plan is that this change will make library bumps less likely in the future. All affected ports have had their portrevisions bumped as a consequence of this. Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT. Update instructions, hardware support, and more notes can be found on https://wiki.freebsd.org/Graphics Thanks to: all testers, bdrewery and the FreeBSD x11@ team exp-run by: bdrewery [1] PR: ports/187602 [1] Approved by: portmgr (bdrewery), core (jhb) Notes: svn path=/head/; revision=351411
* Update from 4.0.35 to 4.0.41:Sergey A. Osokin2014-04-093-5/+5
| | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. STAGEfy www/rubygem-passenger. Notes: svn path=/head/; revision=350664
* Update OpenSSL logic to match www/nginx-develMark Felder2014-04-011-3/+1
| | | | | | | | PR: ports/182985 Approved by: maintainer timeout Notes: svn path=/head/; revision=349818
* Security update from 1.4.6 to 1.4.7.Sergey A. Osokin2014-03-232-3/+3
| | | | | | | | | | | | | | | | | | | <ChangeLog> *) Security: a heap memory buffer overflow might occur in a worker process while handling a specially crafted request by ngx_http_spdy_module, potentially resulting in arbitrary code execution (CVE-2014-0133). Thanks to Lucas Molas, researcher at Programa STIC, Fundación Dr. Manuel Sadosky, Buenos Aires, Argentina. *) Bugfix: in the "fastcgi_next_upstream" directive. Thanks to Lucas Molas. </ChangeLog> Notes: svn path=/head/; revision=348826
* Update from 1.4.5 to 1.4.6.Sergey A. Osokin2014-03-062-3/+3
| | | | | | | | | | | | | | | | | <ChangeLog> *) Bugfix: the "client_max_body_size" directive might not work when reading a request body using chunked transfer encoding; the bug had appeared in 1.3.9. Thanks to Lucas Molas. *) Bugfix: a segmentation fault might occur in a worker process when proxying WebSocket connections. </ChangeLog> Notes: svn path=/head/; revision=347156
* Update from 1.4.4 to bugfix release 1.4.5.Sergey A. Osokin2014-02-162-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <ChangeLog> *) Bugfix: the $ssl_session_id variable contained full session serialized instead of just a session id. Thanks to Ivan Ristić. *) Bugfix: client connections might be immediately closed if deferred accept was used; the bug had appeared in 1.3.15. *) Bugfix: alerts "zero size buf in output" might appear in logs while proxying; the bug had appeared in 1.3.9. *) Bugfix: a segmentation fault might occur in a worker process if the ngx_http_spdy_module was used. *) Bugfix: proxied WebSocket connections might hang right after handshake if the select, poll, or /dev/poll methods were used. *) Bugfix: a timeout might occur while reading client request body in an SSL connection using chunked transfer encoding. *) Bugfix: memory leak in nginx/Windows. </ChangeLog> Notes: svn path=/head/; revision=344610
* - By popular request enable HTTP_SSL option per defaultBernhard Froehlich2014-01-301-2/+2
| | | | | | | | With hat: portmgr Discussed with: osa@ (maintainer) Notes: svn path=/head/; revision=341828
* Fix properties on pkg-plistBaptiste Daroussin2014-01-211-1/+0
| | | | Notes: svn path=/head/; revision=340674
* Update from 4.0.33 to 4.0.35:Sergey A. Osokin2014-01-173-5/+5
| | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. Notes: svn path=/head/; revision=340006
* Upgrade 3rd party modules to latest version.Vanilla I. Shu2014-01-164-28/+28
| | | | | | | | | | | | | | echo 0.50 => 0.51 headers_more 0.24 => 0.25 drizzle 0.1.6 => 0.1.7 rtmp 1.0.8 => 1.1.2 set_misc 0.23 => 0.24 srcache 0.24 => 0.25 Approved by: osa@ Notes: svn path=/head/; revision=339882
* Upgrade third-party lua module from 0.9.3 to 0.9.4.Sergey A. Osokin2014-01-142-4/+4
| | | | Notes: svn path=/head/; revision=339676
* Update from 4.0.30 to 4.0.33:Sergey A. Osokin2014-01-043-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> Release 4.0.33 -------------- * Fixed a compatibility problem in passenger-install-apache2-module with Ruby 1.8. The language selection menu didn't work properly. Release 4.0.32 -------------- * Fixed compatibility problems with old Ruby versions that didn't include RubyGems. Release 4.0.31 -------------- * Introduced a new tool: `passenger-config restart-app`. With this command you can initiate an application restart without touching restart.txt. Unlike touching restart.txt, this tool initiates the restart immediately instead of on the next request. * Fixed some problems in process spawning and request handling. * Fixed some problems with the handling of HTTP chunked transfer encoding bodies. These problems only occurred in Ruby. * Fixed the HelperAgent, upon shutdown, not correctly waiting 5 seconds until all clients have disconnected. Fixes issue #884. * Fixed compilation problems on FreeBSD. * Fixed some C++ strict aliasing problems. * Fixed some problems with spawning applications that print messages without newline during startup. Fixes issue #1039. * Fixed potential hangs on JRuby when Ctrl-C is used to shutdown the server. Fixes issue #1035. * When Phusion Passenger is installed through the Debian package, passenger-install-apache2-module now checks whether the Apache module package (libapache2-mod-passenger) is properly installed, and installs it using apt-get if it's not installed. Fixes issue #1031. * The `passenger-status --show=xml` command no longer prints the non-XML preamble, such as the version number and the time. Fixes issue #1037. * The Ruby native extension check whether it's loaded against the right Ruby version, to prevent problems when people upgrade Ruby without recompiling their native extensions. * Various other minor Debian packaging improvements. </ChangeLog> Notes: svn path=/head/; revision=338622
* Part 2 at removing now useless FETCH_ARGS redifitionBaptiste Daroussin2014-01-031-30/+0
| | | | Notes: svn path=/head/; revision=338513
* Add distinfo for third-party footer module back, introduced in r338325.Sergey A. Osokin2013-12-311-0/+2
| | | | Notes: svn path=/head/; revision=338326
* Update from 4.0.29 to 4.0.30:Sergey A. Osokin2013-12-313-7/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> * Fixed wrong autogeneration of HTTP Date header. If the web app does not supply a Date header, then Passenger will add one. Unfortunately due to the use of the wrong format string, December 30 2013 is formatted as December 30 2014. As a result, cookies that expire before 2014 would expire on December 30 2013 and December 31 2013. Details can be found at [Github pull request 93](https://github.com/phusion/passenger/pull/93). This issue only affects Phusion Passenger for Nginx and Phusion Passenger Standalone, and does not affect Phusion Passenger for Apache. You can work around this problem in your application by setting a Date header. For example, in Rails you can do: before_filter { response.date = Time.now.utc } Many thanks to Jeff Michael Dean (zilkey) and many others for bringing this to our attention and for providing workarounds and feedback. </ChangeLog> Notes: svn path=/head/; revision=338325
* 1: Upgrade 3rd party modules to latest version.Vanilla I. Shu2013-12-226-58/+71
| | | | | | | | | | | | | | | | | | | | | | | echo 0.49 => 0.50 headers_more 0.22 => 0.24 drizzle 0.1.5 => 0.1.6 ndk 0.2.18 => 0.2.19 memc 0.13rc3 => 0.14 rds_csv 0.5rc2 => 0.5 rds_json 0.12rc10 => 0.13 rtmp 1.0.6 => 1.0.8 set_misc 0.22rc8 => 0.23 sflow 0.9.6 => 0.9.7 srcache 0.22 => 0.24 xss 0.3rc9 => 0.4 arrayvar 0.03rc1 => 0.03 2: add http_footer module. Approved by: osa@ (maintainer) Notes: svn path=/head/; revision=337176
* Update third-party lua module from 0.9.2 to 0.9.3.Sergey A. Osokin2013-12-192-4/+4
| | | | Notes: svn path=/head/; revision=336940
* Be more correct with openssl on modern FreeBSD10.Sergey A. Osokin2013-12-191-1/+8
| | | | | | | Do not bump PORTREVISION cause SPDY module disable by default. Notes: svn path=/head/; revision=336939
* Update from 4.0.27 to 4.0.29:Sergey A. Osokin2013-12-143-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> Release 4.0.29 -------------- * Fixed a compilation problem on OS X Mavericks. Release 4.0.28 -------------- * Introduced a workaround for a GCC 4.6 bug. This bug could cause Phusion Passsenger to crash during startup. Affected operating systems include Ubuntu 12.04 and Amazon Linux 2013.09.01, though not every machine with this OS installed exhibits the problem. See issue #902. * Improved Node.js support: the Sails framework is now supported. * Improved Node.js support: the streams2 API is now supported. * Introduced support for hooks, allowing users to easily extend Phusion Passenger's behavior. * Fixed a bug in the `passenger start -R` option. It was broken because of a change introduced in 4.0.25. * Fixed a bug in PassengerMaxInstancesPerApp. Fixes issue #1016. * Fixed compilation problems on Solaris. * Fixed an encoding problem in the Apache autodetection code. Fixes issue #1026. * The Debian packages no longer depend on libruby. * Application stdout and stderr are now printed without normal Phusion Passenger debugging information, making them easier to read. </ChangeLog> Notes: svn path=/head/; revision=336456
* Update from 4.0.26 to 4.0.27:Sergey A. Osokin2013-12-063-5/+5
| | | | | | | | | | | | | | | | o) www/rubygem-passenger; o) third-party modules for www/nginx and www/nginx-devel. <ChangeLog> * [Apache] Fixed a bug in the Apache module which could lock up the Apache process or thread. This is a regression introduced in version 4.0.24. * Node.js application processes now have friendly process titles. </ChangeLog> Notes: svn path=/head/; revision=335722
* Make third-party accept_language module fetchable by update to latest version.Sergey A. Osokin2013-12-042-3/+3
| | | | | | | PR: ports/184153 Notes: svn path=/head/; revision=335603
* Fix syslog support.Sergey A. Osokin2013-12-031-2/+4
| | | | | | | | | | Do not bump PORTREVISION cause syslog support disabled by default. Patch from: rea PR: ports/180639 Notes: svn path=/head/; revision=335584
* Revert r335523.Mathieu Arnold2013-12-032-2/+2
| | | | | | | Asked by: osa Notes: svn path=/head/; revision=335548
* Upgrade lua module to 0.9.2, echo module to 0.49.Vanilla I. Shu2013-12-032-9/+9
| | | | | | | Approved by: maintainer (osa@) Notes: svn path=/head/; revision=335545