Skip to content
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

GUACAMOLE-1290: Document SFTP public key parameter. #249

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions src/configuring-guacamole.md
Original file line number Diff line number Diff line change
Expand Up @@ -1712,9 +1712,12 @@ by prompting the user directly.

`public-key`
: If SSH is using certificate-based authentication, this field allows
you to provide the Base64-encoded CA certificate that will be used
to validate the certificate of the user. This parameter is optional
and there is no default value.
you to provide the Base64-encoded public key rather than having it
extracted from the provided private key. This parameter is optional
and there is no default value. If a value is provided it will take
precendence, requiring that the private key match the provided
public key, and a mis-match will result in a failure to authenticate
using the provided private key.

(ssh-command)=

Expand Down Expand Up @@ -2185,6 +2188,15 @@ transfer features.
authentication. This parameter is not needed if the private key does not
require a passphrase.

`sftp-public-key`
: If the SFTP connection is using key-based authentication, this field
allows you to specify the Base64-encoded public key rather than having
it extracted from the provided private key. This parameter is optional
and there is no default value. If a value is provided it will take
precendence, requiring that the private key match the provided
public key, and a mis-match will result in a failure to authenticate
using the provided private key.

`sftp-directory`
: The directory to upload files to if they are simply dragged and dropped,
and thus otherwise lack a specific upload location. This parameter is
Expand Down
Loading