yahns Ruby server user/dev discussion
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [ANN] yahns 1.15.0 -_- sleepy app server for Ruby
@ 2017-03-23  4:07  5% Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2017-03-23  4:07 UTC (permalink / raw)
  To: ruby-talk, yahns-public

A Free Software, multi-threaded, non-blocking network
application server designed for low _idle_ power consumption.
It is primarily optimized for applications with occasional users
which see little or no traffic.  yahns currently hosts Rack/HTTP
applications, but may eventually support other application
types.  Unlike some existing servers, yahns is extremely
sensitive to fatal bugs in the applications it hosts.

* git clone git://yhbt.net/yahns
* https://yhbt.net/yahns/README
* https://yhbt.net/yahns/NEWS.atom.xml (supported by most "RSS" readers)
* we only accept plain-text email yahns-public@yhbt.net
* and archive all the mail we receive: https://yhbt.net/yahns-public/
* nntp://news.public-inbox.org/inbox.comp.lang.ruby.yahns

lrg nabgure ubeevoyl-anzrq freire :>

Changes:

    yahns 1.15.0
    
    Minor changes to reduce allocations and simplify our code
    and dependencies.  Nothing particularly interesting unless
    you're the type of person who appreciates brake pedals
    in with holes drilled in them for weight reduction.
    
    11 changes since 1.14.1 (2016-12-14):
          stream_input: avoid allocation for common #read case
          proxy_pass: add a note about the instability of this
          tee_input: simplify conditional for writing to temporary file
          proxy_http_response: reduce memory pressure from larger headers
          http_response: make response headers eligible for GC, sooner
          update more referenced URLs to be HTTPS
          chunk_body: nodoc this internal class
          Revert "use olddoc 1.1.0 for generating NEWS + NEWS.atom.xml"
          gemspec: stop advertising "private" email address
          doc: design_notes: we do not use EPOLLEXCLUSIVE
          README: update with disclaimer about subscription
    
    Ovt punatrf pbzvat...

Please note the disclaimer:

  yahns is extremely sensitive to fatal bugs in the apps it hosts.  There
  is no (and never will be) any built-in "watchdog"-type feature to kill
  stuck processes/threads.  Each yahns process may be handling thousands
  of clients; unexpectedly killing the process will abort _all_ of those
  connections.  Lives may be lost!

  yahns hackers are not responsible for your application/library bugs.
  Use an application server which is tolerant of buggy applications
  if you cannot be bothered to fix all your fatal bugs.

-- 
EW

^ permalink raw reply	[relevance 5%]

* [PATCH 1/4] update more referenced URLs to be HTTPS
  2017-03-05 22:29  5% [PATCH 0/4] documentation cleanups and tidying Eric Wong
@ 2017-03-05 22:29  7% ` Eric Wong
  0 siblings, 0 replies; 3+ results
From: Eric Wong @ 2017-03-05 22:29 UTC (permalink / raw)
  To: yahns-public

HTTPS provides some security against spying and MitM attacks,
so refer users to HTTPS sites, instead.
---
 Documentation/yahns-rackup.pod |  2 +-
 Documentation/yahns_config.pod |  4 ++--
 HACKING                        | 10 +++++-----
 README                         |  2 +-
 examples/logrotate.conf        |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/Documentation/yahns-rackup.pod b/Documentation/yahns-rackup.pod
index bd10efc..3fbde0e 100644
--- a/Documentation/yahns-rackup.pod
+++ b/Documentation/yahns-rackup.pod
@@ -168,7 +168,7 @@ List archives are available at L<https://yhbt.net/yahns-public/>
 =head1 COPYRIGHT
 
 Copyright (C) 2013-2016 all contributors L<mailto:yahns-public@yhbt.net>
-License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
+License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
 
 =head1 SEE ALSO
 
diff --git a/Documentation/yahns_config.pod b/Documentation/yahns_config.pod
index 8fb1608..9558d3d 100644
--- a/Documentation/yahns_config.pod
+++ b/Documentation/yahns_config.pod
@@ -427,7 +427,7 @@ To enable TLS connections, you must configure this yourself.
 See documentation for OpenSSL::SSL::SSLContext
 for more information:
 
-L<http://docs.ruby-lang.org/en/trunk/OpenSSL/SSL/SSLContext.html>
+L<https://docs.ruby-lang.org/en/trunk/OpenSSL/SSL/SSLContext.html>
 
 Default: none
 
@@ -667,7 +667,7 @@ List archives are available at L<https://yhbt.net/yahns-public/>
 =head1 COPYRIGHT
 
 Copyright (C) 2013-2016 all contributors L<mailto:yahns-public@yhbt.net>
-License: GPL-3.0+ L<http://www.gnu.org/licenses/gpl-3.0.txt>
+License: GPL-3.0+ L<https://www.gnu.org/licenses/gpl-3.0.txt>
 
 =head1 SEE ALSO
 
diff --git a/HACKING b/HACKING
index e9a2b76..d0485c4 100644
--- a/HACKING
+++ b/HACKING
@@ -2,12 +2,12 @@ development dependencies
 ------------------------
 
 * minitest RubyGem (version 4 or 5, standard in Ruby 2.0+)
-* curl - http://curl.haxx.se/ - we don't trust our own Ruby abilities :>
+* curl - https://curl.haxx.se/ - we don't trust our own Ruby abilities :>
 * dd(1) - standard POSIX tool - to feed curl
-* ab - http://httpd.apache.org/ - for concurrent testing
+* ab - https://httpd.apache.org/ - for concurrent testing
 * GNU make - https://www.gnu.org/software/make/
-* git - http://www.git-scm.com/
-* ruby - http://www.ruby-lang.org/en/
+* git - https://www.git-scm.com/
+* ruby - https://www.ruby-lang.org/en/
 
 	git clone git://yhbt.net/yahns
 
@@ -52,4 +52,4 @@ No subscription is necessary to post to the mailing list.
 Please remember to Cc: all recipients as subscription is optional.
 
 Copyright (C) 2013-2016 all contributors <yahns-public@yhbt.net>
-License: GPL-3.0+ <http://www.gnu.org/licenses/gpl-3.0.txt>
+License: GPL-3.0+ <https://www.gnu.org/licenses/gpl-3.0.txt>
diff --git a/README b/README
index 2b15cba..349b028 100644
--- a/README
+++ b/README
@@ -88,7 +88,7 @@ the git(7) suite for generating and sending patches.  Please format
 pull requests with the git-request-pull(1) script (also distributed
 with git(7)) and send them via email.
 
-See http://www.git-scm.com/ for more information on git.
+See https://www.git-scm.com/ for more information on git.
 
 Design
 ------
diff --git a/examples/logrotate.conf b/examples/logrotate.conf
index b0d1351..1fd92d0 100644
--- a/examples/logrotate.conf
+++ b/examples/logrotate.conf
@@ -5,7 +5,7 @@
 # /etc/logrotate.d/yahns_app on my Debian systems
 #
 # See the logrotate(8) manpage for more information:
-#    http://linux.die.net/man/8/logrotate
+#    https://linux.die.net/man/8/logrotate
 
 # Modify the following glob to match the logfiles your app writes to:
 /var/log/yahns_app/*.log {
-- 
EW


^ permalink raw reply related	[relevance 7%]

* [PATCH 0/4] documentation cleanups and tidying
@ 2017-03-05 22:29  5% Eric Wong
  2017-03-05 22:29  7% ` [PATCH 1/4] update more referenced URLs to be HTTPS Eric Wong
  0 siblings, 1 reply; 3+ results
From: Eric Wong @ 2017-03-05 22:29 UTC (permalink / raw)
  To: yahns-public

Eric Wong (4):
      update more referenced URLs to be HTTPS
      chunk_body: nodoc this internal class
      Revert "use olddoc 1.1.0 for generating NEWS + NEWS.atom.xml"
      gemspec: stop advertising "private" email address

 .gitignore                     |   1 -
 .olddoc.yml                    |   7 ---
 Documentation/yahns-rackup.pod |   2 +-
 Documentation/yahns_config.pod |   4 +-
 HACKING                        |  13 +++---
 README                         |   2 +-
 Rakefile                       | 101 +++++++++++++++++++++++++++++++++++++++--
 examples/logrotate.conf        |   2 +-
 lib/yahns/chunk_body.rb        |   3 +-
 yahns.gemspec                  |   2 +-
 10 files changed, 112 insertions(+), 25 deletions(-)


^ permalink raw reply	[relevance 5%]

Results 1-3 of 3 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2017-03-05 22:29  5% [PATCH 0/4] documentation cleanups and tidying Eric Wong
2017-03-05 22:29  7% ` [PATCH 1/4] update more referenced URLs to be HTTPS Eric Wong
2017-03-23  4:07  5% [ANN] yahns 1.15.0 -_- sleepy app server for Ruby Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/yahns.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).