plantuml.security.credentials.path
. The file extension is .credential
, the file content is structured in JSON, the charset encoding is UTF-8, the filename must match the UserInfo part of the URL.
See also:
Flow
BasicAuth JSON structure:
{
"name": "<name of the configuration>",
"type": "basicauth",
"identifier": "<client/user identifier>",
"secret": "<client secret>",
"proxy": {
"type": "<proxy type>",
"address": "<proxy server address>",
"port": "<proxy server port>"
}
}
name
: required type
: basicauth
identifier
: requiredsecret
: proxy
: proxy
.type
: required (direct
, socks
, http
)proxy
.address
: requiredproxy
.port
:
{
"name": "jira",
"identifier": "alice",
"secret": "secret"
}
{
"name": "stash-cloud",
"type": "basicauth",
"identifier": "repoadmin",
"secret": "verySecret",
"proxy": {
"type": "socks",
"address": "outboundcloud.int.example.com",
"port": "8091"
}
}