source: mod_gnutls/README

main
Last change on this file was 3e7427a, checked in by Fiona Klute <fiona.klute@…>, 3 years ago

Small Readme updates

  • Property mode set to 100644
File size: 1.6 KB
Line 
1mod_gnutls, Apache GnuTLS module
2================================
3
4  https://mod.gnutls.org/
5
6Mailing List:
7
8  mod_gnutls development <mod_gnutls-devel@lists.gnutls.org>
9
10Lead Maintainer:
11
12  Fiona Klute <fiona.klute@gmx.de>
13
14Past maintainers and other contributors:
15
16  Daniel Kahn Gillmor <dkg@fifthhorseman.net>
17  Paul Querna <chip at force-elite.com>
18  Nikos Mavrogiannopoulos <nmav at gnutls.org>
19  Dash Shendy <neuromancer at dash.za.net>
20
21Prerequisites
22-------------
23
24 * GnuTLS          >= 3.6.3 <https://www.gnutls.org/>
25 * Apache HTTPD    >= 2.4.17 <https://httpd.apache.org/>
26 * autotools, GNU make, & GCC
27 * libmsv          >= 0.1 (Optional, enable with ./configure --enable-msva)
28 * Python 3 (for tests)
29 * PyYAML   <https://github.com/yaml/pyyaml>
30 * pandoc   (for documentation, optional)
31 * pdflatex (for PDF documentation, optional)
32
33Installation
34------------
35
36 tar xvjf mod_gnutls-version.tar.bz2
37 cd mod_gnutls-version/
38 autoreconf -fiv
39 ./configure
40 make
41 make check
42 make install
43 # Configure & restart apache
44
45While not strictly necessary, it is recommended to run "make check"
46before "make install". You may need to pass TEST_HOST or TEST_IP to
47./configure for the tests to work correctly if you have an unusual
48network setup, please see test/README.md for details.
49
50If Doxygen is available, you can build internal API documentation
51using "make doxygen-doc". The documentation will be placed in
52doc/api/.
53
54Configuration
55-------------
56
57Please see doc/mod_gnutls_manual.md for more details. If pandoc is
58available, HTML and PDF (requires pdflatex) documentation will be
59built and installed as well.
Note: See TracBrowser for help on using the repository browser.