From 01853dfaa094193928dcfa51caec3c48b826ebc3 Mon Sep 17 00:00:00 2001 From: Christian Beutel <> Date: Thu, 26 Jun 2025 12:29:54 +0200 Subject: [PATCH] Fixes valhalla URL --- .github/workflows/release.yaml | 2 +- docker-compose.yml | 2 +- docs/src/content/docs/develop/local-development.md | 2 +- docs/src/content/docs/run/environment-configuration.md | 2 +- docs/src/content/docs/run/installation.mdx | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 68458977..035a7953 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -86,7 +86,7 @@ jobs: # docker buildx build db/ --no-cache -t flomp/wanderer-db:$VERSION -t flomp/wanderer-db:latest --platform=linux/amd64,linux/arm64 --push # Build web image - export PUBLIC_VALHALLA_URL=https://valhalla1.openstreetmap.de + export PUBLIC_VALHALLA_URL=https://valhalla.openstreetmap.de cd web npm ci && npm run build cd .. diff --git a/docker-compose.yml b/docker-compose.yml index de799873..7aa7a0be 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -58,7 +58,7 @@ services: UPLOAD_FOLDER: /app/uploads UPLOAD_USER: UPLOAD_PASSWORD: - PUBLIC_VALHALLA_URL: https://valhalla1.openstreetmap.de + PUBLIC_VALHALLA_URL: https://valhalla.openstreetmap.de PUBLIC_NOMINATIM_URL: https://nominatim.openstreetmap.org volumes: - ./data/uploads:/app/uploads diff --git a/docs/src/content/docs/develop/local-development.md b/docs/src/content/docs/develop/local-development.md index 7f5b47e7..6cb94916 100644 --- a/docs/src/content/docs/develop/local-development.md +++ b/docs/src/content/docs/develop/local-development.md @@ -12,7 +12,7 @@ export ORIGIN=http://localhost:5173 export MEILI_URL=http://127.0.0.1:7700 export MEILI_MASTER_KEY=p2gYZAWODOrwTPr4AYoahCZ9CI8y9bUd0yQLGk-E3m8 export PUBLIC_POCKETBASE_URL=http://127.0.0.1:8090 -export PUBLIC_VALHALLA_URL=https://valhalla1.openstreetmap.de +export PUBLIC_VALHALLA_URL=https://valhalla.openstreetmap.de export POCKETBASE_ENCRYPTION_KEY=9ada3c93163812101e50e2bf49e880bc cd search && ./meilisearch --master-key $MEILI_MASTER_KEY & diff --git a/docs/src/content/docs/run/environment-configuration.md b/docs/src/content/docs/run/environment-configuration.md index 14092cee..45c5344a 100644 --- a/docs/src/content/docs/run/environment-configuration.md +++ b/docs/src/content/docs/run/environment-configuration.md @@ -42,7 +42,7 @@ Since we use an unmodified installation of meilisearch you can use all variables | BODY_SIZE_LIMIT | Maximum allowed upload size | Infinity | | PUBLIC_POCKETBASE_URL | IP or hostname (including the port) of your pocketbase instance | http://db:8090 | | PUBLIC_DISABLE_SIGNUP | Disables signup option for new users | false | -| PUBLIC_VALHALLA_URL | Public IP or hostname (including the port) of a valhalla instance | https://valhalla1.openstreetmap.de | +| PUBLIC_VALHALLA_URL | Public IP or hostname (including the port) of a valhalla instance | https://valhalla.openstreetmap.de | | PUBLIC_NOMINATIM_URL | Public IP or hostname (including the port) of a nominatim instance | https://nominatim.openstreetmap.org | | PUBLIC_PRIVATE_INSTANCE | Setting this to true will block visitors from viewing content without an account | false | | UPLOAD_FOLDER | Folder from which wanderer auto-uploads trails | /app/uploads | diff --git a/docs/src/content/docs/run/installation.mdx b/docs/src/content/docs/run/installation.mdx index 001054b5..a7f2fe8b 100644 --- a/docs/src/content/docs/run/installation.mdx +++ b/docs/src/content/docs/run/installation.mdx @@ -116,7 +116,7 @@ services: UPLOAD_FOLDER: /app/uploads UPLOAD_USER: UPLOAD_PASSWORD: - PUBLIC_VALHALLA_URL: https://valhalla1.openstreetmap.de + PUBLIC_VALHALLA_URL: https://valhalla.openstreetmap.de PUBLIC_NOMINATIM_URL: https://nominatim.openstreetmap.org volumes: - ./data/uploads:/app/uploads @@ -232,7 +232,7 @@ export ORIGIN=http://localhost:3000 export MEILI_URL=http://127.0.0.1:7700 export MEILI_MASTER_KEY=YOU_SHOULD_DEFINITELY_CHANGE_ME export PUBLIC_POCKETBASE_URL=http://127.0.0.1:8090 -export PUBLIC_VALHALLA_URL=https://valhalla1.openstreetmap.de +export PUBLIC_VALHALLA_URL=https://valhalla.openstreetmap.de export POCKETBASE_ENCRYPTION_KEY=YOUR_ENCRYPTION_KEY_HERE # Optional configuration