Tileserver of basemap for applications.
- Docker and Docker Compose
- Native setup is possible for the tileserver and nginx. However, these instructions are for docker container setup.
- Maptiler/tileserver-gl-light docker
- OpenMapTiles Positron Style & Planning Positron Style
- Nginx docker
- Certbot CLI
The application is designed to serve mapbox vector tiles. The tiles are not tracked in source because they can be hundreds or thousands of megabytes each. (Depending on the source of the files, they may also be subject to licenses which restrict their distribution.) The application is configured to look for a generic "metro-region.mbtiles" file.
The metro-region.mbtiles file should be created before running the rest of the application.
Download united states data into the top-level data folder.
curl -o data/us.osm.pbf https://download.geofabrik.de/north-america/us-latest.osm.pbfExtract the NYC metro region from us data
docker compose run --rm osmium extract /data/us.osm.pbf --bbox=-79.21,37.09,-67.83,44.42 --output=/data/metro-region.osm.pbfGenerate tiles from region extract
docker compose run --rm planetiler --osm-path=/data/metro-region.osm.pbf --output=/data/metro-region.mbtiles --downloadMove the tiles into the tileserver volume
mv data/metro-region.mbtiles tileserver/data/Generate fonts by following instructions in the openmaptiles/fonts repository. Move the generated .pbf files from the _output folder of the fonts repository to the tileserver/data/fonts folder of this ose-basemap-server repository. Keep the files in their folders; they are acccessed based on the name of the folder.
For local development, the tiles may be served directly without relying on nginx. To start only the tileserver, run docker compose up tileserver. The tileserver will be available at localhost:8080.
For production and production-like environments, the tileserver should be served behind ngnix. To start both nginx and the tileserver, run docker compose up tileserver nginx
Nginx will try to run on port 80 and 443. This is required for production configurations. However, it may cause issues during local development. Many systems prevent applications from running on these ports by default. This issue can be resolved by either:
- Navigating to
compose.yaml, changing80:80to8000:80, and removing443:443or - Exposing root privileged ports on the local machine
sudo setcap cap_net_bind_service=ep $(which rootlesskit)
systemctl --user restart dockerThe basemap server works in tandem with labs-layers-api. The layers api contains references to the tile server which it then passes to its dependent applications. These references are in public/static/v3.json and data/base/style.json. For both of these references, https://tiles.planninglabs.nyc should be changed to the target url.
The Ngnix image is configured to use certbot for alpine linux. With the application running in docker on the production server, certification can be run with:
docker exec ${CONTAINER_ID} certbot -n -m ${CONTACT_EMAIL} -d ${DOMAINS} --nginx --agree-tosRebuilding the nginx container reset the changes certbot applied to default.conf on installation. However, the certifications will persist in the docker volumes. The certificates can be reinstalled with:
docker exec -it ${CONTAINER_ID} certbot -d ${DOMAINS} --nginx(This command starts an interactive terminal for installation. When in doubt about the state of the certificates, this is the safest command to run)
Certificate renewal is achieved by placing a renewal script into the weekly periodic cronjob folder. However, the crond daemon needs to be started with each new container. It can be started with:
docker exec ${CONTAINER_ID} crond