nocoffee-kamal 2.3.0.2 → 2.3.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28c14758366da1ecad587823ea0ecaaee14a3584373a6b40ce6f2fe390490970
4
- data.tar.gz: 7526c6d1c7188edeb94801529a804ec688a3bac00b6d60e22c6b3ee9fe3628c8
3
+ metadata.gz: 223e16fa86229aef57b0240731cc7f2941f224aa4552e605bd5d7182166084c2
4
+ data.tar.gz: bb2d69b0ffe59f22eaa1f7a22f0b368d5fbbef2a041bc17b96ac68aef28972fd
5
5
  SHA512:
6
- metadata.gz: f9936c64cbfd480b28bfb64b5a93513a54f92efe4fb86aa71f3cbfefc1e11229cf2aec435a733d51990cd345255b981e243043c4f6bbf0d11c1d63a6bc9cbeff
7
- data.tar.gz: c90910f3d1bfd2dfdf7ddebdd9c6e126a90c0104f8f109c1e41da13235c7c0cc06ea59a3217ceccdf64e8e6082db6a61d4cc5d7d9d5a01e9fa7fffe0b46455f5
6
+ metadata.gz: cbbd09944ed7dcdf4e4d0065e49800d04290b471ff6165bb9dacf3609e8ddbff6351309aebdccadf673690cc6b8fafcb8be75e2b88a29ea08823dd4cc7f0a86c
7
+ data.tar.gz: c3d96a182bb8e20becbfb9a8621a98d66f2415007278a568c3785b535b661f9aae549b7c5578130a23b086e54b989da2de7413860e8865c9e4cbd8050c3062a8
@@ -54,6 +54,11 @@ proxy:
54
54
  # Next big thing after...
55
55
  tls_on_demand_url: "http://example.com/check_host"
56
56
 
57
+ # TLSFlexibleMode
58
+ #
59
+ # Next big thing after...
60
+ tls_flexible_mode: false
61
+
57
62
  # Response timeout
58
63
  #
59
64
  # How long to wait for requests to complete before timing out, defaults to 30 seconds:
@@ -31,6 +31,7 @@ class Kamal::Configuration::Proxy
31
31
  host: hosts,
32
32
  tls: proxy_config["ssl"].presence,
33
33
  "tls-on-demand-url": proxy_config["tls_on_demand_url"],
34
+ "tls-flexible-mode": proxy_config["tls_flexible_mode"].presence,
34
35
  "deploy-timeout": seconds_duration(config.deploy_timeout),
35
36
  "drain-timeout": seconds_duration(config.drain_timeout),
36
37
  "health-check-interval": seconds_duration(proxy_config.dig("healthcheck", "interval")),
@@ -14,7 +14,7 @@ class Kamal::Configuration
14
14
 
15
15
  include Validation
16
16
 
17
- PROXY_MINIMUM_VERSION = "v0.8.2.7"
17
+ PROXY_MINIMUM_VERSION = "v0.8.2.8"
18
18
  PROXY_HTTP_PORT = 80
19
19
  PROXY_HTTPS_PORT = 443
20
20
  PROXY_LOG_MAX_SIZE = "10m"
data/lib/kamal/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Kamal
2
- VERSION = "2.3.0.2"
2
+ VERSION = "2.3.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nocoffee-kamal
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0.2
4
+ version: 2.3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson