Changeset f548f15 in mod_gnutls


Ignore:
Timestamp:
Jan 24, 2008, 1:39:20 AM (15 years ago)
Author:
Nokis Mavrogiannopoulos <nmav@…>
Branches:
asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, msva, proxy-ticket, upstream
Children:
2cdc264
Parents:
e6f648a
git-author:
Nikos Mavrogiannopoulos <nmav@…> (01/24/08 01:39:20)
git-committer:
Nokis Mavrogiannopoulos <nmav@…> (01/24/08 01:39:20)
Message:

prepare for an alpha release

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • NEWS

    re6f648a rf548f15  
    1 ** Version 0.5.0
     1** Version 0.5.0-alpha (2008-01-24)
    22
    3 - Added support for OpenPGP keys.
     3- Added support for OpenPGP keys. The new directives are:
     4  GnuTLSPGPKeyringFile, GnuTLSPGPCertificateFile, GnuTLSPGPKeyFile
    45
    56** Version 0.4.2 (2007-12-10)
  • README

    re6f648a rf548f15  
    6161</VirtualHost>
    6262
    63 
    6463# a more advanced configuration
    6564GnuTLSCache dbm "/var/cache/www-tls-cache/cache"
     
    8887        ...
    8988</VirtualHost>
     89
     90# A setup for OpenPGP and X.509 authentication
     91<VirtualHost 1.2.3.4:443>
     92        Servername crystal.lan:443
     93        GnuTLSEnable on
     94        GnuTLSPriorities NORMAL:+COMP-NULL
     95
     96# setup the openpgp keys
     97        GnuTLSPGPCertificateFile /etc/apache2/test.pub.asc
     98        GnuTLSPGPKeyFile /etc/apache2/test.sec.asc
     99
     100# and the X.509 keys
     101        GnuTLSCertificateFile /etc/apache2/server-cert.pem
     102        GnuTLSKeyFile /etc/apache2/server-key.pem
     103        GnuTLSClientVerify ignore
     104
     105# To avoid using the default DH params
     106        GnuTLSDHFile /etc/apache2/dh.pem
     107
     108# these are only needed if GnuTLSClientVerify != ignore
     109        GnuTLSClientCAFile ca.pem
     110        GnuTLSPGPKeyringFile /etc/apache2/ring.asc
     111</VirtualHost>
  • configure.ac

    re6f648a rf548f15  
    11dnl
    2 AC_INIT(mod_gnutls, 0.5.0)
     2AC_INIT(mod_gnutls, 0.5.0-alpha)
    33OOO_CONFIG_NICE(config.nice)
    44MOD_GNUTLS_VERSION=AC_PACKAGE_VERSION
     
    2929dnl AC_SUBST(LIBTOOL)
    3030
    31 MIN_TLS_VERSION=2.1.7
     31MIN_TLS_VERSION=2.2.1
    3232AM_PATH_LIBGNUTLS_EXTRA($MIN_TLS_VERSION,,
    3333        AC_MSG_ERROR([[
  • src/gnutls_hooks.c

    re6f648a rf548f15  
    159159        gnutls_certificate_type_set_priority( session, cprio);
    160160    }
    161 
    162 
    163161
    164162    return 0;
Note: See TracChangeset for help on using the changeset viewer.