diff options
author | Klemens Nanni <kn@cvs.openbsd.org> | 2023-10-29 11:27:12 +0000 |
---|---|---|
committer | Klemens Nanni <kn@cvs.openbsd.org> | 2023-10-29 11:27:12 +0000 |
commit | 4fbdbf38aa745adda9f7674d25bc0cb3d1b19d43 (patch) | |
tree | 7473d9a87e78596949efd1ea71352394b5dd88dd /etc | |
parent | bfb8172e85b67b8cd8dd14a92ce1a49861264d58 (diff) |
Unmention/don't explain SSL, drop 9y old "ssl" keyword/deprecation warning
Switch "ssl" to "tls" in relayd.conf(5) if you haven't done so in the last
ten years, "ssl" is now an error.
Say "TLS" not "SSL/TLS" and drop the primer in the TLS RELAYS section.
OK benno
Diffstat (limited to 'etc')
-rw-r--r-- | etc/examples/relayd.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/examples/relayd.conf b/etc/examples/relayd.conf index 35280b66612..3ed437b7937 100644 --- a/etc/examples/relayd.conf +++ b/etc/examples/relayd.conf @@ -1,4 +1,4 @@ -# $OpenBSD: relayd.conf,v 1.5 2018/05/06 20:56:55 benno Exp $ +# $OpenBSD: relayd.conf,v 1.6 2023/10/29 11:27:11 kn Exp $ # # Macros # @@ -34,7 +34,7 @@ redirect www { } # -# Relay and protocol for HTTP layer 7 loadbalancing and SSL/TLS acceleration +# Relay and protocol for HTTP layer 7 loadbalancing and TLS acceleration # http protocol https { match request header append "X-Forwarded-For" value "$REMOTE_ADDR" @@ -50,7 +50,7 @@ http protocol https { } relay wwwtls { - # Run as a SSL/TLS accelerator + # Run as a TLS accelerator listen on $ext_addr port 443 tls protocol https |