summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/cha-config.texi16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/cha-config.texi b/doc/cha-config.texi
index 3cc568a607..f094407900 100644
--- a/doc/cha-config.texi
+++ b/doc/cha-config.texi
@@ -25,6 +25,7 @@ used can be queried using @funcref{gnutls_get_system_config_file}.
* Disabling algorithms and protocols::
* Querying for disabled algorithms and protocols::
* Overriding the parameter verification profile::
+* Overriding the default priority string::
@end menu
@node Application-specific priority strings
@@ -156,3 +157,18 @@ using the following.
min-verification-profile = legacy
@end example
+
+@node Overriding the default priority string
+@section Overriding the default priority string
+
+GnuTLS uses default priority string which is defined at compiled
+time. Usually it is set to @code{NORMAL}. This override allows to set
+the default priority string to something more appropriate for a given
+deployment.
+
+Below example sets a more specific default priority string.
+@example
+[overrides]
+default-priority-string = SECURE128:-VERS-TLS-ALL:+VERS-TLS1.3
+
+@end example