- Timestamp:
- Apr 9, 2013, 1:03:19 PM (10 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
- Children:
- 2b16350
- Parents:
- 4ee45a1
- Location:
- docs
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
docs/mod_gnutls_manual.mdwn
r4ee45a1 re7527b9 1 mod\_gnutls Manual 0.1\ 2 July 2011 3 ======================= 1 % `mod_gnutls` Manual 4 2 5 3 * * * * * 6 4 7 Contents 8 -------- 9 10 1. Compilation & Installation 11 2. Integration 12 3. Configuration Directives\ 13 - GnuTLSCache 14 - GnuTLSCacheTimeout 15 - GnuTLSSessionTickets 16 - GnuTLSCertificateFile 17 - GnuTLSKeyFile 18 - GnuTLSPGPCertificateFile 19 - GnuTLSPGPKeyFile 20 - GnuTLSClientVerify 21 - GnuTLSClientCAFile 22 - GnuTLSPGPKeyringFile 23 - GnuTLSEnable 24 - GnuTLSDHFile 25 - GnuTLSRSAFile 26 - GnuTLSSRPPasswdFile 27 - GnuTLSSRPPasswdConfFile 28 - GnuTLSPriorities 29 - GnuTLSExportCertificates 30 31 4. Configuration Examples\ 32 - Simple Standard SSL Example 33 - Server Name Indication Example 34 35 5. Performance Issues 36 6. Environment Variables 37 7. Credits 5 `mod_gnutls` is a module for the Apache web server that provides 6 HTTPS (HTTP over Transport Layer Security (TLS) or the older Secure 7 Sockets Layer (SSL)) using the GnuTLS library. 38 8 39 9 * * * * * … … 42 12 -------------------------- 43 13 44 mod\_gnutls uses the "configure/make/make install" mechanism common to 45 many Open Source programs.\ 46 Most of the dirty work is handled by either configure or Apache's apxs 47 utility.\ 48 If you have built Apache modules before, there shouldn't be any 49 surprises for you.\ 50 The interesting options you can pass to configure are:\ 51 \ 52 --with-apxs=PATH\ 53 This option is used to specify the location of the apxs utility that 54 was installed as part of apache.\ 55 Specify the location of the binary, not the directory it is located 56 in.\ 57 \ 58 --with-libgnutls=PATH\ 59 Full path to the libgnutls-config program.\ 60 \ 61 --with-apr-memcache=PREFIX\ 62 Prefix to where apr\_memcache is installed.\ 63 \ 64 --help\ 65 Provides a list of all available configure options. 14 `mod_gnutls` uses the `./configure && make && make install` mechanism 15 common to many Open Source programs. Most of the dirty work is 16 handled by either `./configure` or Apache's `apxs` utility. If you have 17 built Apache modules before, there shouldn't be any surprises for you. 18 19 The interesting options you can pass to configure are: 20 21 `--with-apxs=PATH` 22 : This option is used to specify the location of the apxs utility that 23 was installed as part of apache. Specify the location of the 24 binary, not the directory it is located in. 25 26 `--with-libgnutls=PATH` 27 : Full path to the libgnutls-config program. 28 29 `--with-apr-memcache=PREFIX` 30 : Prefix to where apr\_memcache is installed. 31 32 `--help` 33 : Provides a list of all available configure options. 66 34 67 35 * * * * *
Note: See TracChangeset
for help on using the changeset viewer.