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

Fixed typos in comments about 'disable-cert-pinning' option. #25401

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions go/libkb/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,18 @@ trusted by the client. In order to disable SSL pinning and allow TLS MITMing pro
possible to switch the client to trust the public CA system. This can be done in one of three ways:

``` bash
keybase config set disable-ssl-pinning true
keybase config set disable-cert-pinning true
# OR
export DISABLE_SSL_PINNING="true"
# OR
keybase --disable-ssl-pinning
keybase --disable-cert-pinning
```

Note that enabling this option is NOT recommended. Enabling this option allows the proxy to view all traffic between
the client and the Keybase servers.

Be careful, the config option is "disable-cert-pinning" but the environment variable is "DISABLE_SSL_PINNING".

*/

package libkb
Expand Down