diff --git a/docsite/docs/configuration/transforms/musicbrainz.mdx b/docsite/docs/configuration/transforms/musicbrainz.mdx index 3075c531..53707196 100644 --- a/docsite/docs/configuration/transforms/musicbrainz.mdx +++ b/docsite/docs/configuration/transforms/musicbrainz.mdx @@ -139,7 +139,7 @@ Example: ### Rules and Hooks -[Add your Stage](https://foxxmd.github.io/multi-scrobbler/configuration/transforms/#stage) to a Source or Client by specifying it in a [Hook](/configuration/transforms/#hook): +[Add your Stage](/configuration/transforms/#stage) to a Source or Client by specifying it in a [Hook](/configuration/transforms/#hook): ```json5 title="subsonic.json" [ diff --git a/docsite/static/robots.txt b/docsite/static/robots.txt index 78d589d8..b2464afd 100644 --- a/docsite/static/robots.txt +++ b/docsite/static/robots.txt @@ -1,4 +1,4 @@ -Sitemap: https://foxxmd.github.io/multi-scrobbler/sitemap.xml +Sitemap: https://docs.multi-scrobbler.app/sitemap.xml User-agent: * Allow: / \ No newline at end of file diff --git a/src/backend/common/infrastructure/config/source/vlc.ts b/src/backend/common/infrastructure/config/source/vlc.ts index 45f8caf3..45efb16a 100644 --- a/src/backend/common/infrastructure/config/source/vlc.ts +++ b/src/backend/common/infrastructure/config/source/vlc.ts @@ -6,7 +6,7 @@ export interface VLCData extends CommonSourceData, PollingOptions { /** * URL:PORT of the VLC server to connect to * - * To use this you must have the Web (http) interface module enabled and a password set https://foxxmd.github.io/multi-scrobbler/docs/configuration#vlc + * To use this you must have the Web (http) interface module enabled and a password set * * @examples ["localhost:8080"] * @default "localhost:8080" diff --git a/src/backend/index.ts b/src/backend/index.ts index 34036bb3..b8b48fa6 100644 --- a/src/backend/index.ts +++ b/src/backend/index.ts @@ -114,7 +114,7 @@ const configDir = process.env.CONFIG_DIR || path.resolve(projectDir, `./config`) initServer(logger, appLoggerStream, output, scrobbleSources, scrobbleClients); if(process.env.IS_LOCAL === 'true') { - logger.info('multi-scrobbler can be run as a background service! See: https://foxxmd.github.io/multi-scrobbler/docs/installation/service'); + logger.info('multi-scrobbler can be run as a background service! See: https://docs.multi-scrobbler.app/installation/service'); } if(appConfigFail !== undefined) { diff --git a/src/backend/server/index.ts b/src/backend/server/index.ts index 5b3502e3..f9e0acc7 100644 --- a/src/backend/server/index.ts +++ b/src/backend/server/index.ts @@ -59,7 +59,7 @@ export const initServer = async (parentLogger: Logger, appLoggerStream: PassThro dockerHint = stripIndents` --- HINT --- MS is likely being run in a container with BRIDGE networking which means the above addresses are not accessible from outside this container. - To ensure the container is accessible make sure you have mapped the *container* port ${port} to a *host* port. https://foxxmd.github.io/multi-scrobbler/docs/installation#networking + To ensure the container is accessible make sure you have mapped the *container* port ${port} to a *host* port. https://docs.multi-scrobbler.app/installation/?dockerSetting=networking#recommended-settings The container will then be accessible at http://HOST_MACHINE_IP:HOST_PORT${localDefined ? ` (or ${local} since you defined this!)` : ''} --- HINT --- `;