1
0

hue.ini 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Lightweight Hue configuration file
  2. # ==================================
  3. [desktop]
  4. # Set this to a random string, the longer the better.
  5. secret_key=kasdlfjknasdfl3hbaksk3bwkasdfkasdfba23asdf
  6. # Webserver listens on this address and port
  7. http_host=0.0.0.0
  8. http_port=8888
  9. secure_proxy_ssl_header=true
  10. use_x_forwarded_host=true
  11. # external_host=hue.devlocal.site
  12. use_proxy_headers=true
  13. # cors_enabled=false
  14. # Enable or disable Cross-Origin Resource Sharing (CORS). Defaults to True.Default: True
  15. # cors_allow_credentials=false
  16. # cors_allowed_origins="hue.devlocal.site,localhost"
  17. # Time zone name
  18. time_zone=America/Los_Angeles
  19. # Enable or disable debug mode.
  20. django_debug_mode=true
  21. # Enable or disable backtrace for server error
  22. http_500_debug_mode=false
  23. app_blacklist=search,hbase,security
  24. # Use gunicorn or not
  25. use_cherrypy_server=false
  26. # Gunicorn work class: gevent or evenlet, gthread or sync.
  27. gunicorn_work_class=sync
  28. gunicorn_number_of_workers=1
  29. [[session]]
  30. # The name of the cookie to use for sessions.
  31. # This can have any value that is not used by the other cookie names in your application.
  32. ## cookie_name=sessionid
  33. # The cookie containing the users' session ID will expire after this amount of time in seconds.
  34. # Default is 2 weeks.
  35. ## ttl=1209600
  36. secure=true
  37. trusted_origins="hue.devlocal.site"
  38. # Configuration options for specifying the Desktop Database. For more info,
  39. # see http://docs.djangoproject.com/en/1.11/ref/settings/#database-engine
  40. # ------------------------------------------------------------------------