blob: 7b6a1846c1ab020a65784f1c8e66ddd12a2fc976 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# BRouter routing-server configuration, read by brouter.service as a systemd
# EnvironmentFile (plain KEY=VALUE, no shell expansion). Uncomment to override
# the defaults baked into the unit.
# Routing-data segment tiles (*.rd5). NOT shipped by the package — download the
# tiles covering your area into this directory, e.g.:
# curl -O --output-dir /var/lib/brouter/segments4 \
# https://brouter.de/brouter/segments4/E5_N45.rd5
#BROUTER_SEGMENTS=/var/lib/brouter/segments4
# Bundled routing profiles (read-only, package-provided).
#BROUTER_PROFILES=/usr/share/brouter/profiles2
# Writable directory for compiled / uploaded custom profiles.
#BROUTER_CUSTOMPROFILES=/var/lib/brouter/customprofiles
# Listen address + port. Defaults to localhost so the server is NOT exposed —
# reach it via a reverse proxy or your app. Use 0.0.0.0 to bind all interfaces.
#BROUTER_BIND=127.0.0.1
#BROUTER_PORT=17777
# Concurrent request-handling threads.
#BROUTER_MAXTHREADS=1
# JVM options: heap size and max per-request runtime (seconds).
#JAVA_OPTS=-Xmx256M -Xms128M -DmaxRunningTime=300
# Java launcher (BRouter 1.7.9 needs Java 11+). Defaults to the system default
# java; pin a specific JRE here if it isn't the default — handy when an older
# Java (e.g. 8) must remain the system default for other software:
#JAVA=/usr/lib/jvm/java-17-openjdk/bin/java
|