diff options
author | Daniel Ruggeri <druggeri@apache.org> | 2013-09-17 16:53:21 +0200 |
---|---|---|
committer | Daniel Ruggeri <druggeri@apache.org> | 2013-09-17 16:53:21 +0200 |
commit | 90f9939cee61b46a74e9827ad68ddbf13fe6a704 (patch) | |
tree | f1a2d1f7af8b9a03833b289b8ac1a71f6246c182 /docs | |
parent | fill in missing message numbers in APLOGNO() invocations (diff) | |
download | apache2-90f9939cee61b46a74e9827ad68ddbf13fe6a704.tar.xz apache2-90f9939cee61b46a74e9827ad68ddbf13fe6a704.zip |
Add exec: callout support for mod_session_crypto
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1524079 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mod_session_crypto.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_session_crypto.xml b/docs/manual/mod/mod_session_crypto.xml index 1277dc7554..5d873df2a0 100644 --- a/docs/manual/mod/mod_session_crypto.xml +++ b/docs/manual/mod/mod_session_crypto.xml @@ -174,6 +174,19 @@ SessionCryptoPassphrase secret secret to the end of the list, and once rolled out completely to all servers, remove the first key from the start of the list.</p> + <p>If the value begins with exec: the resulting command will be executed and the + first line returned to standard output by the program will be used as the key.</p> +<example><pre> +#key used as-is +SessionCryptoPassphrase secret + +#Run /path/to/program to get key +SessionCryptoPassphrase exec:/path/to/program + +#Run /path/to/otherProgram and provide arguments +SessionCryptoPassphrase "exec:/path/to/otherProgram argument1" +</pre></example> + </usage> </directivesynopsis> |