thruster 0.1.15 → 0.1.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -0
  3. data/lib/thruster/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3883f5b206b999a1b235cc418bf20949527db4228342827d98c22aab1a40209f
4
- data.tar.gz: 9612b8a142571c502a9cdce95437d1d413cde9b1c62f42a8480fc80fae96df6b
3
+ metadata.gz: 7bf66d84a5ebf871a8d9ac3deb1c72451ce69ee1748c35bdc197c8eab1a74eac
4
+ data.tar.gz: 5b452b499fb6e86da15fc202393dc003c99c40e53f2c3962d289d172684e8303
5
5
  SHA512:
6
- metadata.gz: 1a1a36b51d6ed518c84d01784c9f0901709b44ccd51ba84d9d6d1746898d3814439fd6367647c2d65b38af09a973bf5989bb10b3f872d63bb3a7916629081d64
7
- data.tar.gz: f78c36cdebf3cc1fa72e34be17cb4d04a9cf733daf062b75715f24ded98c9c16c4f9173b682e4b4d4ed825591bb5467eb1fe1dbbaf4225eb0249ff2a088d4dd9
6
+ metadata.gz: 1b112d7b2eb1eae3a4c7afaf58b0db30eae61b9e04d3686aa571c4827857112e675f7a74e8df95dacec87a18a0b2ba18ff3df16848ff8afc9ffc9a56e979dbfc
7
+ data.tar.gz: eca2fa990f11a36ec7066414518bee3d7bf4499c6d1e22ad619e803f36fdb37790993df3355f7a4770b456a3238d99ab600ae3ef6f41015887322aa369262cc8
data/README.md CHANGED
@@ -88,6 +88,7 @@ environment variables that you can set.
88
88
  | `HTTP_IDLE_TIMEOUT` | The maximum time in seconds that a client can be idle before the connection is closed. | 60 |
89
89
  | `HTTP_READ_TIMEOUT` | The maximum time in seconds that a client can take to send the request headers and body. | 30 |
90
90
  | `HTTP_WRITE_TIMEOUT` | The maximum time in seconds during which the client must read the response. | 30 |
91
+ | `H2C_ENABLED` | Set to `1` or `true` to enable h2c (http/2 cleartext) | Disabled |
91
92
  | `ACME_DIRECTORY` | The URL of the ACME directory to use for TLS certificate provisioning. | `https://acme-v02.api.letsencrypt.org/directory` (Let's Encrypt production) |
92
93
  | `EAB_KID` | The EAB key identifier to use when provisioning TLS certificates, if required. | None |
93
94
  | `EAB_HMAC_KEY` | The Base64-encoded EAB HMAC key to use when provisioning TLS certificates, if required. | None |
@@ -1,3 +1,3 @@
1
1
  module Thruster
2
- VERSION = "0.1.15"
2
+ VERSION = "0.1.16"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thruster
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.15
4
+ version: 0.1.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin McConnell