You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the properties are stored in plain text. If this is false (the default) then it is expected that the passwords are of the form HEX( MD5( username ":" realm ":" password ) )
21960
+
If the passwords are stored in the property file as plain text, e.g. `quarkus.security.users.embedded.users.alice=AlicesSecretPassword`. If this is false (the default) then it is expected that passwords are hashed as per the `algorithm` config property.
The algorithm with which user password is hashed. The library expects a password prepended with the username and the realm, in the form ALG( username ":" realm ":" password ) in hexadecimal format.
21982
21982
21983
-
This property is ignored if `plainText` is true.
21983
+
For example, on a Unix-like system we can produce the expected hash for Alice logging in to the Quarkus realm with password AlicesSecretPassword using `echo -n "alice:Quarkus:AlicesSecretPassword" ++\|++ sha512sum`, and thus set `quarkus.security.users.embedded.users.alice=c8131...4546` (full hash output abbreviated here). This property is ignored if `plainText` is true.
If the properties are stored in plain text. If this is false (the default) then it is expected that the passwords are of the form HEX( MD5( username ":" realm ":" password ) )
18
+
If the passwords are stored in the property file as plain text, e.g. `quarkus.security.users.embedded.users.alice=AlicesSecretPassword`. If this is false (the default) then it is expected that passwords are hashed as per the `algorithm` config property.
The algorithm with which user password is hashed. The library expects a password prepended with the username and the realm, in the form ALG( username ":" realm ":" password ) in hexadecimal format.
40
40
41
-
This property is ignored if `plainText` is true.
41
+
For example, on a Unix-like system we can produce the expected hash for Alice logging in to the Quarkus realm with password AlicesSecretPassword using `echo -n "alice:Quarkus:AlicesSecretPassword" ++\|++ sha512sum`, and thus set `quarkus.security.users.embedded.users.alice=c8131...4546` (full hash output abbreviated here). This property is ignored if `plainText` is true.
If the properties are stored in plain text. If this is false (the default) then it is expected that the passwords are of the form HEX( MD5( username ":" realm ":" password ) )
18
+
If the passwords are stored in the property file as plain text, e.g. `quarkus.security.users.embedded.users.alice=AlicesSecretPassword`. If this is false (the default) then it is expected that passwords are hashed as per the `algorithm` config property.
The algorithm with which user password is hashed. The library expects a password prepended with the username and the realm, in the form ALG( username ":" realm ":" password ) in hexadecimal format.
40
40
41
-
This property is ignored if `plainText` is true.
41
+
For example, on a Unix-like system we can produce the expected hash for Alice logging in to the Quarkus realm with password AlicesSecretPassword using `echo -n "alice:Quarkus:AlicesSecretPassword" ++\|++ sha512sum`, and thus set `quarkus.security.users.embedded.users.alice=c8131...4546` (full hash output abbreviated here). This property is ignored if `plainText` is true.
If this server should be started in debug mode. The default is to start in debug mode and listen on port 5005. Whether the JVM is suspended waiting for a debugger to be attached, depends on the value of suspend.
1287
-
debug supports the following options:
1288
-
1287
+
debug supports the following options:
1289
1288
Value Effect
1290
1289
false The JVM is not started in debug mode
1291
1290
true The JVM is started in debug mode and will be listening on debugHost:debugPort
If this server should be started in debug mode. The default is to start in debug mode and listen on port 5005. Whether the JVM is suspended waiting for a debugger to be attached, depends on the value of suspend.
3137
-
debug supports the following options:
3138
-
3136
+
debug supports the following options:
3139
3137
Value Effect
3140
3138
false The JVM is not started in debug mode
3141
3139
true The JVM is started in debug mode and will be listening on debugHost:debugPort
If this server should be started in debug mode. The default is to start in debug mode and listen on port 5005. Whether the JVM is suspended waiting for a debugger to be attached, depends on the value of suspend.
3690
-
debug supports the following options:
3691
-
3688
+
debug supports the following options:
3692
3689
Value Effect
3693
3690
false The JVM is not started in debug mode
3694
3691
true The JVM is started in debug mode and will be listening on debugHost:debugPort
That alone will be enough to initialize a registry client to pull extension catalogs from two registries using their default configurations.
228
228
229
229
Certain registry options could be initialized with their specific environment variables. Each such option will have the following environment variable prefix:
where `<UPPERCASED_AND_UNDERSCORED_REGISTRY_ID>` is a registry ID with each character converted to uppercase and a `.` replaced with `_`. For example, `REGISTRY_ACME_ORG`.
234
234
235
-
The following options can be configured with this approach:
235
+
Below are examples of various options that can be configured following this approach.
236
236
237
-
- Repository URL, for example `QUARKUS_REGISTRY_REGISTRY_ACME_ORG_REPO_URL=https://internal.registry.acme.org/maven`
238
-
- Update policy, for example `QUARKUS_REGISTRY_REGISTRY_ACME_ORG_UPDATE_POLICY=always`
239
-
- Offering, for example `QUARKUS_REGISTRY_REGISTRY_ACME_ORG_OFFERING=acme-magic`
Where `UPPERCASED_AND_UNDERSCORED_PLATFORM_KEY` is a platform key with each character converted to uppercase and a `.` replaced with `_`. For example, `IO_QUARKUS_PLATFORM`.
0 commit comments