summaryrefslogtreecommitdiff
path: root/src/serv-args.def
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2014-02-28 19:31:16 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2014-02-28 19:31:16 +0100
commit219b74cc4704dbd567b716531cc2d62e2f056d1e (patch)
tree4bdb8b05978f5ec1cdda261ead6b9a1a9f6e06a6 /src/serv-args.def
parent367faa07495da5ade37d43742a436cceee3a3ce1 (diff)
downloadgnutls-219b74cc4704dbd567b716531cc2d62e2f056d1e.tar.gz
Add required priorities
Diffstat (limited to 'src/serv-args.def')
-rw-r--r--src/serv-args.def8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/serv-args.def b/src/serv-args.def
index 47528a150d..b937ead4bf 100644
--- a/src/serv-args.def
+++ b/src/serv-args.def
@@ -394,7 +394,7 @@ gpg -a --export-secret-keys 5D1D14D8 > openpgp-server-key.txt
Let's start the server with support for OpenPGP credentials:
@example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+CTYPE-OPENPGP \
--pgpkeyfile openpgp-server-key.txt \
--pgpcertfile openpgp-server.txt
@end example
@@ -404,7 +404,7 @@ an SRP password file created with @code{srptool}.
To start the server with SRP support:
@example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+SRP-RSA:+SRP \
--srppasswdconf srp-tpasswd.conf \
--srppasswd srp-passwd.txt
@end example
@@ -413,7 +413,7 @@ Let's also start a server with support for PSK. This would require
a password file created with @code{psktool}.
@example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+ECDHE-PSK:+PSK \
--pskpasswd psk-passwd.txt
@end example
@@ -421,7 +421,7 @@ Finally, we start the server with all the earlier parameters and you
get this command:
@example
-gnutls-serv --http \
+gnutls-serv --http --priority NORMAL:+PSK:+SRP:+CTYPE-OPENPGP \
--x509cafile x509-ca.pem \
--x509keyfile x509-server-key.pem \
--x509certfile x509-server.pem \