# Configuration for osrm-backend-service
# This file is sourced by the systemd service unit.
# Edit and restart the service after changes:
#   systemctl restart osrm-backend-service

# Path to the preprocessed OSRM data file (.osrm).
# Process OSM data first, for example using the MLD pipeline:
#   osrm-extract -p /usr/share/osrm/profiles/car.lua /path/to/region.osm.pbf
#   osrm-partition /path/to/region.osrm
#   osrm-customize /path/to/region.osrm
# or using the CH pipeline (replace the last two steps with):
#   osrm-contract /path/to/region.osrm
OSRM_DATA_FILE=/var/lib/osrm/data.osrm

# Additional options passed to osrm-routed.
# Useful options:
#   --algorithm mld   use MLD (default when processed with osrm-partition)
#   --algorithm ch    use CH (default when processed with osrm-contract)
#   --port 5000       TCP port to listen on (default: 5000)
#   --ip 127.0.0.1    bind address (default: 0.0.0.0)
OSRM_OPTIONS=""
