Newer
Older
openhab / openhab.conf.example
@Pascal Gollor Pascal Gollor on 30 Jun 2018 598 bytes fix commit
  1. # system architecture
  2. # amd64, armhf, arm64
  3. # look at https://hub.docker.com/r/openhab/openhab/ for more details
  4. OPENHAB_ARCH=amd64
  5.  
  6. # user configuration
  7. # http://docs.openhab.org/installation/docker.html
  8. # please add user like UID:GID
  9. OPENHAB_USER_ID=1000
  10.  
  11. # network configuration
  12. OPENHAB_HTTP_BIND=127.0.0.1
  13. OPENHAB_HTTP_PORT=8080
  14.  
  15. OPENHAB_HTTPS_BIND=127.0.0.1
  16. OPENHAB_HTTPS_PORT=8443
  17.  
  18. OPENHAB_OSGI_BIND=127.0.0.1
  19. OPENHAB_OSGI_PORT=5555
  20.  
  21. # timezone
  22. TZ=Europe/Berlin
  23.  
  24. # language
  25. OPENHAB_LANG=de_DE.UTF-8
  26.  
  27. # optional change memory limit
  28. #OPENHAB_MEMORY_LIMIT=2g
  29.  
  30. # maximum log lines
  31. LOG_LINES=9999