https://bz.apache.org/bugzilla/show_bug.cgi?id=66670

Christopher Schultz <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO

--- Comment #1 from Christopher Schultz <[email protected]> ---
Why not just use an XML entity?

<!DOCTYPE Context [
<!ENTITY certPassword "tiger">
]>
...
...
<SSLHostConfig certificateKeyPassword="&certPassword;"
...>
<SSLHostConfig certificateKeyPassword="&certPassword;"
...>
<SSLHostConfig certificateKeyPassword="&certPassword;"
...>
<SSLHostConfig certificateKeyPassword="&certPassword;"
...>
<SSLHostConfig certificateKeyPassword="&certPassword;"
...>
<SSLHostConfig certificateKeyPassword="&certPassword;"
...>

Or, if you really want to use a separate file:

<!DOCTYPE Context [
<!ENTITY certPassword SYSTEM "file:///etc/ssl/%%VIRTUAL_HOSTNAME%%/password">
]>

?

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to