can anyone advise on how I set the keystore-file tag on a secure rtmp
destination to be a relative path on the server. It seems crazy that
I have to put in a file path, especially as my entire application is
deployed as a war file and I already have a valid keystore for https.
I have tried...
<keystore-file>${jboss.server.home.dir}/conf/dsl.keystore</keystore-file>
a combination of relative path modifiers like this
<keystore-file>../../../conf/dsl.keystore</keystore-file>
and the only one which works is
<keystore-file>c:\hopefully-secure-folder\dsl.keystore</keystore-file>
what I want to do is refer to the server home directory like I can in
the rest of my configuration.
Any ideas?
Simon