dash 4.1.1 → 4.1.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 +4 -4
- data/lib/dash/configuration/docs/proxy.yml +22 -9
- data/lib/dash/configuration/proxy/run.rb +1 -1
- data/lib/dash/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: 17c99f41669956c79ffd4272e4fd524171c4ff9a37f26d885bd4b4cdc084be85
|
|
4
|
+
data.tar.gz: 8fa42e665988fd8d343b0d0141438096635e6059566767bb3d63375fe975e324
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c12f97e422182fba7128f2c27094dc824b0c76825273b89f70d10563c4acc6a59a1d22fe10c22c47b7e0456a6a50c30de0343a6c42de1e0ebd677e5a602c19f7
|
|
7
|
+
data.tar.gz: 897652d67bb727025f490d7ee8ca1b719c77c13a2fb896826742c6fc34f5ff3968384925dccd01e00d6493a07c98e75212e76933c97d36323e03c20fb3436d46
|
|
@@ -328,11 +328,13 @@ proxy:
|
|
|
328
328
|
# `interval` is the poll interval in seconds (proxy default 300, minimum 10).
|
|
329
329
|
#
|
|
330
330
|
# Authentication tokens live in the PROXY's environment, not the app's: polls
|
|
331
|
-
# send `
|
|
331
|
+
# send `DASH_PROXY_REDIRECTS_TOKEN` as a bearer token when set, and
|
|
332
332
|
# `POST /.dash-proxy/redirects/refresh` nudges an immediate re-poll when
|
|
333
|
-
# authenticated with `
|
|
334
|
-
# `proxy.run.options.env`, next to `
|
|
335
|
-
# deploy flags, which leak into process listings and audit logs.
|
|
333
|
+
# authenticated with `DASH_PROXY_REFRESH_TOKEN`. Set both via
|
|
334
|
+
# `proxy.run.options.env`, next to `DASH_PROXY_DOMAINS_TOKEN` — never as
|
|
335
|
+
# deploy flags, which leak into process listings and audit logs. The
|
|
336
|
+
# `KAMAL_PROXY_`-prefixed names are still read as a fallback, so a proxy
|
|
337
|
+
# container that already carries them keeps working.
|
|
336
338
|
#
|
|
337
339
|
# When a loadbalancer is configured the map answers at the loadbalancer, same
|
|
338
340
|
# as `ssl_domains` and `canonical_host` — the per-host proxies never see it.
|
|
@@ -422,10 +424,11 @@ proxy:
|
|
|
422
424
|
# proxy default) issues per-domain certs; 2-25 enables stable SAN batching.
|
|
423
425
|
#
|
|
424
426
|
# Authentication tokens for the poll endpoint and the refresh nudge are
|
|
425
|
-
# read by the proxy from the `
|
|
426
|
-
# `
|
|
427
|
-
#
|
|
428
|
-
#
|
|
427
|
+
# read by the proxy from the `DASH_PROXY_DOMAINS_TOKEN` and
|
|
428
|
+
# `DASH_PROXY_REFRESH_TOKEN` environment variables (the `KAMAL_PROXY_`
|
|
429
|
+
# names are still read as a fallback). Set them on the proxy container via
|
|
430
|
+
# `proxy.run.options.env` — never as deploy flags, which leak into process
|
|
431
|
+
# listings and audit logs.
|
|
429
432
|
ssl_domains:
|
|
430
433
|
source: /api/v1/kamal/domains
|
|
431
434
|
interval: 300
|
|
@@ -834,7 +837,7 @@ proxy:
|
|
|
834
837
|
# below already embeds its ghcr.io host
|
|
835
838
|
repository: ghcr.io/zoolutions/dash-proxy # Container repository for the
|
|
836
839
|
# dash-proxy image (this is the default)
|
|
837
|
-
version: v1.1.0.
|
|
840
|
+
version: v1.1.0.3 # Version tag of the dash-proxy image to use.
|
|
838
841
|
# Defaults to the minimum version this gem
|
|
839
842
|
# requires - only pin it to roll forward early,
|
|
840
843
|
# never below the default
|
|
@@ -876,6 +879,16 @@ proxy:
|
|
|
876
879
|
# supports one, and `http_fallback` falls back to an HTTP-01 challenge when
|
|
877
880
|
# DNS-01 fails. Both default to true in the proxy.
|
|
878
881
|
#
|
|
882
|
+
# For `host`/`hosts` names the proxy infers the zone from the name itself.
|
|
883
|
+
# Names learned from `ssl_domains` are tenant-owned and may sit in a zone you
|
|
884
|
+
# do not run DNS for, so from proxy v1.1.0.2 they collapse into a wildcard
|
|
885
|
+
# only where the hash form of `dns_provider` maps their zone explicitly -
|
|
886
|
+
# mapping a zone is you asserting DNS control over it. Under a mapped zone
|
|
887
|
+
# every single-label name is ordered as that zone's wildcard, while the apex
|
|
888
|
+
# and deeper names ride the same order as concrete identifiers. `default` and
|
|
889
|
+
# `auto` assert nothing about a specific zone, so they never collapse a
|
|
890
|
+
# dynamic name.
|
|
891
|
+
#
|
|
879
892
|
# `directory` overrides the ACME directory URL - point it at Let's Encrypt's
|
|
880
893
|
# staging environment while you are working out a DNS setup, so you do not
|
|
881
894
|
# burn production rate limits on failed attempts.
|
data/lib/dash/version.rb
CHANGED