local_settings.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Edit this file to override the default graphite settings, do not edit settings.py
  2. # Turn on debugging and restart apache if you ever see an "Internal Server Error" page
  3. #DEBUG = True
  4. # Set your local timezone (django will try to figure this out automatically)
  5. TIME_ZONE = 'UTC'
  6. # Setting MEMCACHE_HOSTS to be empty will turn off use of memcached entirely
  7. #MEMCACHE_HOSTS = ['127.0.0.1:11211']
  8. # Sometimes you need to do a lot of rendering work but cannot share your storage mount
  9. #REMOTE_RENDERING = True
  10. #RENDERING_HOSTS = ['fastserver01','fastserver02']
  11. #LOG_RENDERING_PERFORMANCE = True
  12. #LOG_CACHE_PERFORMANCE = True
  13. # If you've got more than one backend server they should all be listed here
  14. #CLUSTER_SERVERS = []
  15. # Override this if you need to provide documentation specific to your graphite deployment
  16. #DOCUMENTATION_URL = "http://wiki.mycompany.com/graphite"
  17. # Enable email-related features
  18. #SMTP_SERVER = "mail.mycompany.com"
  19. # LDAP / ActiveDirectory authentication setup
  20. #USE_LDAP_AUTH = True
  21. #LDAP_SERVER = "ldap.mycompany.com"
  22. #LDAP_PORT = 389
  23. #LDAP_SEARCH_BASE = "OU=users,DC=mycompany,DC=com"
  24. #LDAP_BASE_USER = "CN=some_readonly_account,DC=mycompany,DC=com"
  25. #LDAP_BASE_PASS = "readonly_account_password"
  26. #LDAP_USER_QUERY = "(username=%s)" #For Active Directory use "(sAMAccountName=%s)"
  27. # If sqlite won't cut it, configure your real database here (don't forget to run manage.py syncdb!)
  28. #DATABASE_ENGINE = 'mysql' # or 'postgres'
  29. #DATABASE_NAME = 'graphite'
  30. #DATABASE_USER = 'graphite'
  31. #DATABASE_PASSWORD = 'graphite-is-awesome'
  32. #DATABASE_HOST = 'mysql.mycompany.com'
  33. #DATABASE_PORT = '3306'