- Timestamp:
- Mar 19, 2015, 9:30:18 AM (8 years ago)
- Branches:
- asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
- Children:
- 6bbc00a
- Parents:
- 91ccb87
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/mod_gnutls_manual.mdwn
r91ccb87 rd8ae2a0 395 395 With GnuTLSExportCertificates enabled, `mod_gnutls` exports the same 396 396 environment variables to the CGI process as `mod_ssl`. 397 398 399 `SSLProxyEngine` 400 -------------- 401 402 Enable TLS proxy connections for this virtual host 403 404 SSLProxyEngine [on|off] 405 406 Default: *off*\ 407 Context: virtual host 408 409 This directive enables support for TLS proxy connections for a virtual 410 host. 411 412 `GnuTLSProxyCAFile` 413 -------------------- 414 415 Set to the PEM Encoded Certificate Authority Certificate 416 417 GnuTLSProxyCAFile FILEPATH 418 419 Default: *none*\ 420 Context: server config, virtual host 421 422 Takes an absolute or relative path to a PEM Encoded Certificate to use 423 as a Certificate Authority when verifying certificates provided by 424 proxy back end servers. This file may contain a list of trusted 425 authorities. If not set, verification of TLS back end servers will 426 always fail due to lack of a trusted CA. 427 428 `GnuTLSProxyCertificateFile` 429 ----------------------- 430 431 Set to the PEM Encoded Client Certificate 432 433 GnuTLSProxyCertificateFile FILEPATH 434 435 Default: *none*\ 436 Context: server config, virtual host 437 438 Takes an absolute or relative path to a PEM-encoded X.509 certificate 439 to use as this Server's End Entity (EE) client certificate for TLS 440 client authentication in proxy TLS connections. If you need to supply 441 certificates for intermediate Certificate Authorities (iCAs), they 442 should be listed in sequence in the file, from EE to the iCA closest 443 to the root CA. Optionally, you can also include the root CA's 444 certificate as the last certificate in the list. 445 446 If not set, TLS client authentication will be disabled for TLS proxy 447 connections. If set, `GnuTLSProxyKeyFile` must be set as well to 448 provide the matching private key. 449 450 `GnuTLSProxyKeyFile` 451 --------------- 452 453 Set to the PEM Encoded Private Key 454 455 GnuTLSProxyKeyFile FILEPATH 456 457 Default: *none*\ 458 Context: server config, virtual host 459 460 Takes an absolute or relative path to the Private Key matching the 461 certificate configured using the `GnuTLSProxyCertificateFile` 462 directive. This key cannot currently be password protected. 463 464 **Security Warning:**\ 465 This private key must be protected. It is read while Apache is still 466 running as root, and does not need to be readable by the nobody or 467 apache user. 397 468 398 469 * * * * *
Note: See TracChangeset
for help on using the changeset viewer.