You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

110 lines
3.7 KiB

  1. [DEFAULT]
  2. #
  3. # From faafo.api
  4. #
  5. # Listen address. (string value)
  6. #listen_address = 0.0.0.0
  7. # Bind port. (integer value)
  8. #bind_port = 80
  9. # Database connection URL. (string value)
  10. database_url = sqlite:////tmp/sqlite.db
  11. #
  12. # From faafo.queues
  13. #
  14. # AMQP connection URL. (string value)
  15. transport_url = amqp://guest:guest@localhost:5672//
  16. #
  17. # From faafo.worker
  18. #
  19. # API connection URL (string value)
  20. endpoint_url = http://localhost
  21. #
  22. # From oslo.log
  23. #
  24. # Print debugging output (set logging level to DEBUG instead of
  25. # default WARNING level). (boolean value)
  26. #debug = false
  27. # The name of a logging configuration file. This file is appended to
  28. # any existing logging configuration files. For details about logging
  29. # configuration files, see the Python logging module documentation.
  30. # (string value)
  31. # Deprecated group/name - [DEFAULT]/log_config
  32. #log_config_append = <None>
  33. # DEPRECATED. A logging.Formatter log message format string which may
  34. # use any of the available logging.LogRecord attributes. This option
  35. # is deprecated. Please use logging_context_format_string and
  36. # logging_default_format_string instead. (string value)
  37. #log_format = <None>
  38. # Format string for %%(asctime)s in log records. Default: %(default)s
  39. # . (string value)
  40. #log_date_format = %Y-%m-%d %H:%M:%S
  41. # (Optional) Name of log file to output to. If no default is set,
  42. # logging will go to stdout. (string value)
  43. # Deprecated group/name - [DEFAULT]/logfile
  44. #log_file = <None>
  45. # (Optional) The base directory used for relative --log-file paths.
  46. # (string value)
  47. # Deprecated group/name - [DEFAULT]/logdir
  48. #log_dir = <None>
  49. # Use syslog for logging. Existing syslog format is DEPRECATED during
  50. # I, and will change in J to honor RFC5424. (boolean value)
  51. #use_syslog = false
  52. # (Optional) Enables or disables syslog rfc5424 format for logging. If
  53. # enabled, prefixes the MSG part of the syslog message with APP-NAME
  54. # (RFC5424). The format without the APP-NAME is deprecated in I, and
  55. # will be removed in J. (boolean value)
  56. #use_syslog_rfc_format = false
  57. # Syslog facility to receive log lines. (string value)
  58. #syslog_log_facility = LOG_USER
  59. # Log output to standard error. (boolean value)
  60. #use_stderr = true
  61. # Format string to use for log messages with context. (string value)
  62. #logging_context_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
  63. # Format string to use for log messages without context. (string
  64. # value)
  65. #logging_default_format_string = %(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
  66. # Data to append to log format when level is DEBUG. (string value)
  67. #logging_debug_format_suffix = %(funcName)s %(pathname)s:%(lineno)d
  68. # Prefix each line of exception output with this format. (string
  69. # value)
  70. #logging_exception_prefix = %(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s
  71. # List of logger=LEVEL pairs. (list value)
  72. #default_log_levels = amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN
  73. # Enables or disables publication of error events. (boolean value)
  74. #publish_errors = false
  75. # Enables or disables fatal status of deprecations. (boolean value)
  76. #fatal_deprecations = false
  77. # The format for an instance that is passed with the log message.
  78. # (string value)
  79. #instance_format = "[instance: %(uuid)s] "
  80. # The format for an instance UUID that is passed with the log message.
  81. # (string value)
  82. #instance_uuid_format = "[instance: %(uuid)s] "