Skip to main content

Documentation Index

Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Usage

anaconda sites show [OPTIONS] [SITE]

Description

Displays the configuration for a site as JSON. When no site is specified, shows the default site. Use --all to display every configured site at once, or --show-hidden to include internal fields that are hidden by default.

Arguments

Options

Examples

Show the default site configuration
anaconda sites show
Sample output:
{
  "site": "my-platform",
  "domain": "anaconda-platform.example.com",
  "ssl_verify": true,
  "extra_headers": null,
  "use_unified_repo_api_key": false,
  "proxy_servers": null,
  "client_cert": null,
  "client_cert_key": null,
  "use_device_flow": false
}
Show configuration for a specific site
anaconda sites show my-platform
Show all configured sites
anaconda sites show --all