iotdb-rest.properties 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one
  3. # or more contributor license agreements. See the NOTICE file
  4. # distributed with this work for additional information
  5. # regarding copyright ownership. The ASF licenses this file
  6. # to you under the Apache License, Version 2.0 (the
  7. # "License"); you may not use this file except in compliance
  8. # with the License. You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing,
  13. # software distributed under the License is distributed on an
  14. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. # KIND, either express or implied. See the License for the
  16. # specific language governing permissions and limitations
  17. # under the License.
  18. #
  19. ####################
  20. ### REST Service Configuration
  21. ####################
  22. # Is the REST service enabled
  23. enable_rest_service=true
  24. # the binding port of the REST service
  25. # rest_service_port=18080
  26. # the default row limit to a REST query response when the rowSize parameter is not given in request
  27. # rest_query_default_row_size_limit=10000
  28. # the expiration time of the user login information cache (in seconds)
  29. # cache_expire_in_seconds=28800
  30. # maximum number of users can be stored in the user login cache.
  31. # cache_max_num=100
  32. # init capacity of users can be stored in the user login cache.
  33. # cache_init_num=10
  34. # is SSL enabled
  35. # enable_https=false
  36. # SSL key store path
  37. # key_store_path=
  38. # SSL key store password
  39. # key_store_pwd=
  40. # SSL trust store path
  41. # trust_store_path=
  42. # SSL trust store password.
  43. # trust_store_pwd=
  44. # SSL timeout (in seconds)
  45. # idle_timeout_in_seconds=50000