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

Warn about dangerous TLS client configuration #6273

Merged
merged 2 commits into from
Jul 28, 2023
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
9 changes: 7 additions & 2 deletions docs/integrations/python.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,16 @@ configuration.host = 'http://localhost:8000'
client = LakeFSClient(configuration)
```

Optionally, if you get a ```SSL: CERTIFICATE_VERIFY_FAILED``` error message, add the following configuration to your client:
For testing SSL endpoints you may wish to use a self-signed certificate. If you do this and receive an `SSL: CERTIFICATE_VERIFY_FAILED` error message you might add the following configuration to your client:

```python
configuration.verify_ssl = False
```
```

{: .warning }
This setting allows well-known "man-in-the-middle",
impersonation, and credential stealing attacks. Never use this in any
production setting.

Optionally, to enable communication via proxies, simply set the proxy configuration:

Expand Down
Loading