diff --git a/otoroshi/build.sbt b/otoroshi/build.sbt index 236801895..034eda7f0 100644 --- a/otoroshi/build.sbt +++ b/otoroshi/build.sbt @@ -359,15 +359,14 @@ reStart / javaOptions ++= Seq( //"-Dapp.rootScheme=https", "-Dotoroshi.revolver=true", "-Dotoroshi.env=dev", - s"-Dotoroshi.http.port=${sys.props.getOrElse("otoroshi.http.port", "9999")}", - s"-Dotoroshi.https.port=${sys.props.getOrElse("otoroshi.https.port", "9998")}", + s"-Dotoroshi.http.port=9999", + s"-Dotoroshi.https.port=9998", "-Dotoroshi.liveJs=true", "-Dotoroshi.adminPassword=password", "-Dotoroshi.domain=oto.tools", "-Dotoroshi.events.maxSize=0", - s"-Dotoroshi.cluster.mode=${sys.props.getOrElse("otoroshi.cluster.mode", "Leader")}", - s"-Dotoroshi.cluster.leader.name=${sys.props.getOrElse("otoroshi.cluster.leader.name", "otoroshi-leader-dev")}", - s"-Dotoroshi.cluster.leader.urls.0=${sys.props.getOrElse("otoroshi.cluster.leader.urls.0", null)}", + s"-Dotoroshi.cluster.mode=Leader", + s"-Dotoroshi.cluster.leader.name=otoroshi-leader-dev", "-Dotoroshi.tunnels.enabled=false", "-Dotoroshi.tunnels.default.enabled=false", "-Dotoroshi.tunnels.default.url=http://127.0.0.1:9999",