Skip to content

Commit

Permalink
Make the relaxed TLS config description a bit more general
Browse files Browse the repository at this point in the history
Still doing some testing, but it appears that with Node v18+ it's no
longer possible to support very old TLS versions that we supported
before. Unfortunately v16 is EOL imminently so there's not much option.
For now, we'll leave this description generic and see if anybody does
indeed need this old-TLS fallback support.
  • Loading branch information
pimterry committed Jun 16, 2023
1 parent 1326f00 commit 6b20dc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/components/settings/connection-settings-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -674,9 +674,9 @@ export class ConnectionSettingsCard extends React.Component<
validationFn={validateHost}
/>
<SettingsExplanation>
Requests to these hosts will skip certificate validation and/or may use older TLS
versions, back to TLSv1. These requests will be successful regardless of any
self-signed, expired or invalid HTTPS configurations.
Requests to these hosts will skip certificate validation and accept some older
TLS configurations. These requests will be successful regardless of any self-signed,
expired or otherwise invalid HTTPS configurations.
</SettingsExplanation>
</CollapsibleCard>
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/view/http/http-error-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const HttpErrorHeader = (p: {
</>
: <>
Pro users can relax HTTPS requirements for configured hosts to
accept older TLS versions and self-signed/invalid certificates, and
accept older TLS configurations and self-signed/invalid certificates, and
configure per-host client certificates for authentication.
</>
}
Expand Down

0 comments on commit 6b20dc3

Please sign in to comment.