diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2018-05-06 20:56:56 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2018-05-06 20:56:56 +0000 |
commit | 00603109f3b58677512fcac0a78561f9b1582f61 (patch) | |
tree | 2cc9a0e6652f066383699e19d0aae4b5f085e0e6 | |
parent | 7fdf9a1606362b2fe3de19e189ddff9581bdf41d (diff) |
don't put options in here that should not be needed in the majority of
cases and will just be copied by users without thinking.
ok claudio@
-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 51ef3c1dc1a..35280b66612 100644 --- a/etc/examples/relayd.conf +++ b/etc/examples/relayd.conf @@ -1,4 +1,4 @@ -# $OpenBSD: relayd.conf,v 1.4 2018/03/23 09:55:06 claudio Exp $ +# $OpenBSD: relayd.conf,v 1.5 2018/05/06 20:56:55 benno Exp $ # # Macros # @@ -42,8 +42,8 @@ http protocol https { value "$SERVER_ADDR:$SERVER_PORT" match request header set "Connection" value "close" - # Various TCP performance options - tcp { nodelay, sack, socket buffer 65536, backlog 128 } + # Various TCP options + tcp { sack, backlog 128 } # tls { no tlsv1.0, ciphers HIGH } # tls no session tickets |