10 lines
429 B
Bash
Executable file
10 lines
429 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# BRouter standalone server
|
|
# java -cp brouter.jar btools.brouter.RouteServer <segmentdir> <profile-map> <customprofiledir> <port> <maxthreads>
|
|
|
|
# maxRunningTime is the request timeout in seconds, set to 0 to disable timeout
|
|
JAVA_OPTS="-Xmx128M -Xms128M -Xmn8M -DmaxRunningTime=300"
|
|
CLASSPATH=../brouter.jar
|
|
|
|
java $JAVA_OPTS -cp $CLASSPATH btools.server.RouteServer ../segments3 ../profiles2 ../customprofiles 17777 1
|