mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-19 06:54:54 +02:00
54 lines
1.1 KiB
Markdown
54 lines
1.1 KiB
Markdown
# Indexers
|
|
|
|
Indexer settings are configured in the `[indexers]` section of your `config.toml` file. MediaManager supports both Prowlarr and Jackett as indexer providers.
|
|
|
|
## Prowlarr (`[indexers.prowlarr]`)
|
|
|
|
- `enabled`
|
|
|
|
Set to `true` to enable Prowlarr. Default is `false`.
|
|
|
|
- `url`
|
|
|
|
Base URL of your Prowlarr instance.
|
|
|
|
- `api_key`
|
|
|
|
API key for Prowlarr. You can find this in Prowlarr's settings under General.
|
|
|
|
## Jackett (`[indexers.jackett]`)
|
|
|
|
- `enabled`
|
|
|
|
Set to `true` to enable Jackett. Default is `false`.
|
|
|
|
- `url`
|
|
|
|
Base URL of your Jackett instance.
|
|
|
|
- `api_key`
|
|
|
|
API key for Jackett. You can find this in Jackett's dashboard.
|
|
|
|
- `indexers`
|
|
|
|
List of indexer names to use with Jackett. You can specify which indexers Jackett should search through.
|
|
|
|
## Example Configuration
|
|
|
|
Here's a complete example of the indexers section in your `config.toml`:
|
|
|
|
```toml
|
|
[indexers]
|
|
[indexers.prowlarr]
|
|
enabled = true
|
|
url = "http://prowlarr:9696"
|
|
api_key = "your_prowlarr_api_key"
|
|
|
|
[indexers.jackett]
|
|
enabled = false
|
|
url = "http://jackett:9117"
|
|
api_key = "your_jackett_api_key"
|
|
indexers = ["1337x", "rarbg"]
|
|
```
|