-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SSL reports deprecated setting, but ssl.ini still uses it #9386
Comments
No, it's not possible to use the Use |
Then please don't remove that setting and/or remove the deprecation warning. |
@ChrisHuebsch-FLIG it is definitely possible to use absolute file names for I'll update the mod files and the documentation. |
Removed references to deprecated properties `jetty.sslContext.[key|trust]StoreAbsolutePath`. Updated documentation to explicitly report that the path can be absolute. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
Removed references to deprecated properties `jetty.sslContext.[key|trust]StoreAbsolutePath`. Updated documentation to explicitly report that the path can be absolute. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
Jetty version(s)
jetty-10.0.13; built: 2022-12-07T20:13:20.134Z
Java version/vendor
(use: java -version)
penjdk version "11.0.18" 2023-01-17
OpenJDK Runtime Environment Temurin-11.0.18+10 (build 11.0.18+10)
OpenJDK 64-Bit Server VM Temurin-11.0.18+10 (build 11.0.18+10, mixed mode)
OS type/version
Windows Server 2019
Description
Jetty complains about deprecated setting:
oejx.XmlConfiguration:main: Property 'jetty.sslContext.keyStoreAbsolutePath' is deprecated, use 'jetty.sslContext.keyStorePath' instead
But in the provided sample ssl.ini it is still in use:
## The KeyStore file path (relative to $JETTY_BASE).
# jetty.sslContext.keyStorePath=etc/keystore.p12
## The KeyStore absolute file path.
# jetty.sslContext.keyStoreAbsolutePath=${jetty.base}/etc/keystore.p12
How to reproduce?
Setup a jetty with ssl and start it.
Question for the discussion
Is it possible to use keyStorePath with an absolute filename?
Documentation does not indicate so.
The text was updated successfully, but these errors were encountered: