rd13_tile_server/docs/nextcloud-config.md
Conrad Schulz bfd8dfdf96 feat: initial tile server setup
- TileServer-GL + nginx reverse proxy (docker-compose)
- CORS-Konfiguration für MediaWiki, Nextcloud & weitere Dienste
- Rate-Limiting & Tile-Caching-Header via nginx
- config/config.json: OSM + Satellitenkacheln
- scripts/download-data.sh: Planetiler (OSM), Sentinel-2 Hinweise
- docs: API-Endpoints, MediaWiki Kartographer, Nextcloud Maps
- .gitignore: MBTiles/PMTiles und .env ausgeschlossen
2026-05-30 15:57:07 +00:00

27 lines
961 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Nextcloud Maps eigenen Tile-Server verwenden
#
# Nextcloud Maps App: https://apps.nextcloud.com/apps/maps
#
# Konfiguration in Nextcloud Admin-Panel:
# Einstellungen → Verwaltung → Maps → Tile server URL
#
# Tile-Server-URLs (TileServer-GL XYZ-Format):
#
# OSM Vektorkarte (als Rasterbild gerendert):
# http://TILE_SERVER_URL:8080/styles/osm-bright/{z}/{x}/{y}.png
#
# Satellitenkarte:
# http://TILE_SERVER_URL:8080/styles/satellite-hybrid/{z}/{x}/{y}.png
#
# Rohe Vektorkacheln (OpenMapTiles Schema):
# http://TILE_SERVER_URL:8080/data/osm-openmaptiles/{z}/{x}/{y}.pbf
#
# Über occ (Kommandozeile) setzen:
# php occ config:app:set maps tileserverUrl \
# --value="http://TILE_SERVER_URL:8080/styles/osm-bright/{z}/{x}/{y}.png"
# Beispiel für docker-compose override wenn Nextcloud im selben Stack läuft:
#
# nextcloud:
# environment:
# MAPS_TILE_SERVER: "http://rd13_tileserver_proxy/styles/osm-bright/{z}/{x}/{y}.png"