diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 6730b87..712ba7c 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -24,6 +24,7 @@ if [[ "$TEMPLATE_CONFIG" = 'true' ]]; then SYSTEM_URI_PRIVATE=${SYSTEM_URI_PRIVATE:-"https://localhost:17009"} \ SYSTEM_URI_PUBLIC=${SYSTEM_URI_PUBLIC:-"https://localhost:16009"} \ SYSTEM_URI_UI=${SYSTEM_URI_UI:-"http://localhost"} \ + SECURITY_RESTAPI_DISABLE=${SECURITY_RESTAPI_DISABLE:-"false"} \ KAFKA_ENABLE=${KAFKA_ENABLE:-"true"} \ KAFKA_BROKERLIST=${KAFKA_BROKERLIST:-"localhost:9092"} \ KAFKA_SSL_CA_LOCATION=${KAFKA_SSL_CA_LOCATION:-""} \ diff --git a/owanalytics.properties b/owanalytics.properties index 3291629..9f0d0e4 100644 --- a/owanalytics.properties +++ b/owanalytics.properties @@ -34,6 +34,7 @@ openwifi.system.uri.private = https://localhost:17009 openwifi.system.uri.public = https://ucentral.dpaas.arilia.com:16009 openwifi.system.commandchannel = /tmp/app.owanalytics openwifi.system.uri.ui = owprov-ui.arilia.com +openwifi.security.restapi.disable = false ############################# # Generic information for all micro services @@ -101,4 +102,4 @@ storage.type.mysql.connectiontimeout = 60 ######################################################################## logging.type = file logging.path = $OWANALYTICS_ROOT/logs -logging.level = debug \ No newline at end of file +logging.level = debug diff --git a/owanalytics.properties.tmpl b/owanalytics.properties.tmpl index 7d2722e..ef0b36c 100644 --- a/owanalytics.properties.tmpl +++ b/owanalytics.properties.tmpl @@ -39,6 +39,7 @@ openwifi.system.uri.private = ${SYSTEM_URI_PRIVATE} openwifi.system.uri.public = ${SYSTEM_URI_PUBLIC} openwifi.system.commandchannel = /tmp/app.owanalytics openwifi.system.uri.ui = ${SYSTEM_URI_UI} +openwifi.security.restapi.disable = ${SECURITY_RESTAPI_DISABLE} ############################# # Generic information for all micro services