nocoffee-kamal 2.3.0.2 → 2.3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/kamal/configuration/docs/proxy.yml +5 -0
- data/lib/kamal/configuration/proxy.rb +1 -0
- data/lib/kamal/configuration.rb +1 -1
- data/lib/kamal/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 223e16fa86229aef57b0240731cc7f2941f224aa4552e605bd5d7182166084c2
|
4
|
+
data.tar.gz: bb2d69b0ffe59f22eaa1f7a22f0b368d5fbbef2a041bc17b96ac68aef28972fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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")),
|
data/lib/kamal/configuration.rb
CHANGED
data/lib/kamal/version.rb
CHANGED