Change all URLs containing maxid.me to dorninger.co

This commit is contained in:
maxDorninger
2025-08-23 17:54:57 +02:00
parent 6c4b6a52cf
commit cd5b16a4e5
5 changed files with 11 additions and 11 deletions

View File

@@ -14,7 +14,7 @@ TMDB (The Movie Database) is the primary metadata provider for MediaManager. It
If you want to use your own TMDB relay service, set this to the URL of your own MetadataRelay. Otherwise, use the default relay.
- **Default:** `https://metadata-relay.maxid.me/tmdb`
- **Default:** `https://metadata-relay.dorninger.co/tmdb`
- **Example:** `https://your-own-relay.example.com/tmdb`
## TVDB Settings (`[metadata.tvdb]`)
@@ -27,7 +27,7 @@ If you want to use your own TMDB relay service, set this to the URL of your own
If you want to use your own TVDB relay service, set this to the URL of your own MetadataRelay. Otherwise, use the default relay.
- **Default:** `https://metadata-relay.maxid.me/tvdb`
- **Default:** `https://metadata-relay.dorninger.co/tvdb`
- **Example:** `https://your-own-relay.example.com/tvdb`
## MetadataRelay
@@ -57,11 +57,11 @@ Here's a complete example of the metadata section in your `config.toml`:
[metadata]
# TMDB configuration
[metadata.tmdb]
tmdb_relay_url = "https://metadata-relay.maxid.me/tmdb"
tmdb_relay_url = "https://metadata-relay.dorninger.co/tmdb"
# TVDB configuration
[metadata.tvdb]
tvdb_relay_url = "https://metadata-relay.maxid.me/tvdb"
tvdb_relay_url = "https://metadata-relay.dorninger.co/tvdb"
```
<note>

View File

@@ -167,7 +167,7 @@ rule_names = ["prefer_h265", "avoid_cam", "reject_non_freeleech"]
# its very unlikely that you need to change this
[metadata]
[metadata.tmdb]
tmdb_relay_url = "https://metadata-relay.maxid.me/tmdb"
tmdb_relay_url = "https://metadata-relay.dorninger.co/tmdb"
[metadata.tvdb]
tvdb_relay_url = "https://metadata-relay.maxid.me/tvdb"
tvdb_relay_url = "https://metadata-relay.dorninger.co/tvdb"

View File

@@ -167,7 +167,7 @@ rule_names = ["prefer_h265", "avoid_cam", "reject_non_freeleech"]
# its very unlikely that you need to change this
[metadata]
[metadata.tmdb]
tmdb_relay_url = "https://metadata-relay.maxid.me/tmdb"
tmdb_relay_url = "https://metadata-relay.dorninger.co/tmdb"
[metadata.tvdb]
tvdb_relay_url = "https://metadata-relay.maxid.me/tvdb"
tvdb_relay_url = "https://metadata-relay.dorninger.co/tvdb"

View File

@@ -2,11 +2,11 @@ from pydantic_settings import BaseSettings
class TmdbConfig(BaseSettings):
tmdb_relay_url: str = "https://metadata-relay.maxid.me/tmdb"
tmdb_relay_url: str = "https://metadata-relay.dorninger.co/tmdb"
class TvdbConfig(BaseSettings):
tvdb_relay_url: str = "https://metadata-relay.maxid.me/tvdb"
tvdb_relay_url: str = "https://metadata-relay.dorninger.co/tvdb"
class MetadataProviderConfig(BaseSettings):

View File

@@ -2,7 +2,7 @@
This is a service that provides metadata for movies and TV shows. It caches the metadata to not overload the TMDB and
TVDB APIs. This service is used by MediaManager to fetch metadata for movies and TV shows. I (the developer) run a
public instance of this service at https://metadata-relay.maxid.me, but you can also run your
public instance of this service at https://metadata-relay.dorninger.co, but you can also run your
own instance.
## Example Docker Compose Configuration