Skip to content

Commit

Permalink
Document verify-ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuhiko committed Feb 26, 2024
1 parent e30c44e commit 767111f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/guide/sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,15 @@ can be supplied with environment variables.
name = "company-internal"
url = "https://${INDEX_USERNAME}:${INDEX_PASSWORD}@company.internal/simple/"
```

## SSL/TLS Verification

By default a source needs to be SSL/TLS protected. If not, rye will refuse to honor
the source. You can override this by setting `verify-ssl` to `false`:

```toml
[[sources]]
name = "company-internal"
url = "http://company.internal/simple/"
verify-ssl = false
```

0 comments on commit 767111f

Please sign in to comment.