From 28456c770ab1161f81b3cc9fe2232b5ff1886630 Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Wed, 13 Mar 2024 17:32:18 +0100 Subject: [PATCH] . --- docs/design_proposals/channel_config.md | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/docs/design_proposals/channel_config.md b/docs/design_proposals/channel_config.md index d5ff28e93..714c36260 100644 --- a/docs/design_proposals/channel_config.md +++ b/docs/design_proposals/channel_config.md @@ -115,7 +115,7 @@ Instead of providing a single mirror, you can also provide a list of mirrors. "https://conda.anaconda.org" = [ "https://conda.anaconda.org", # (1)! "https://repo.prefix.dev", - {url = "https://repo.artifactory.com/conda-mirror-conda-forge", use_zstd = false}, + "https://repo.artifactory.com/conda-mirror-conda-forge", "oci://ghcr.io/conda-channel-mirrors/conda-forge" ] ``` @@ -131,18 +131,11 @@ You can specify whether `pixi` and `rattler-build` should use the `repodata.json This is needed for some proxies like older versions of artifactory ([RTFACT-29886](https://jfrog.atlassian.net/jira/software/c/projects/RTFACT/issues/RTFACT-29886)). ```toml title="rattler.toml" -[mirrors] -"https://conda.anaconda.org" = [ - { url = "https://mirrorme.com", no_zstd = false } -] - -"https://repo.artifactory.cloud" = [ # (1)! - { url = "https://repo.artifactory.cloud", no_zstd = true, no_jlap = true } -] +use_zstd = false +use_jlap = false +use_bz2 = false ``` -1. If you want to specify the behavior of a specific server, you can add it as a mirror to itself with the desired behavior. - ### Use private channels You can specify private channels in your `pixi.toml` and route them to a different URL.