Changes between Initial Version and Version 1 of TracIni


Ignore:
Timestamp:
05/14/04 16:12:13 (20 years ago)
Author:
Nicholas Riley
Comment:

Merging from Trac 0.7rc1

Legend:

Unmodified
Added
Removed
Modified
  • TracIni

    v1 v1  
     1= trac.ini Reference =
     2Trac 0.7 introduces an editable configuration file, ''trac.ini'', located in {{{<projectenv>/conf/trac.ini}}}.
     3This is a brief reference of available configuration options.
     4
     5== [project] ==
     6|| name  || Project name ||
     7|| descr || Short project description ||
     8|| url   || URL to the main project website ||
     9
     10== [trac] ==
     11|| repository_dir  || Path to local Subversion repository ||
     12|| htdocs_location || Base URL for static Trac graphics and CSS files ||
     13|| database        || Database to use for this project ||
     14|| templates_dir   || Path of Clearsilver templates ||
     15
     16== [logging] ==
     17|| log_type  || Logging facility to use. (none, file, stderr, syslog, winlog) ||
     18|| log_file  || If ''log_type'' is ''file'', this should be a path to the log-file ||
     19|| log_level || Level of verbosity in log (CRITICAL, ERROR, WARN, INFO, DEBUG) ||
     20
     21See also: TracLogging
     22
     23== [ticket] ==
     24|| default_version   || Default version for newly created tickets ||
     25|| default_severity  || Default severity for newly created tickets ||
     26|| default_priority  || Default priority for newly created tickets ||
     27|| default_milestone || Default milestone for newly created tickets ||
     28|| default_component || Default component for newly created tickets ||
     29
     30== [attachment] ==
     31|| max_size || Maximum allowed file size for ticket and wiki attachments ||
     32
     33== [notification] ==
     34|| smtp_enabled   || Enable SMTP (email) notification (true, false) ||
     35|| smtp_server    || SMTP server to use for email notifications ||
     36|| smtp_replyto   || Reply-To address to use in notification emails ||
     37|| smtp_always_cc || Email address(es) to always send notifications to ||
     38
     39See also: TracNotification
     40
     41== [header_logo] ==
     42
     43|| src    || URL to image to use as header logo ||
     44|| link   || Destination URL to link to from header logo ||
     45|| alt    || ''alt'' text for header logo ||
     46|| width  || Header logo width in pixels ||
     47|| height || Header logo height in pixels ||
     48
     49[[BR]]
     50----
     51See also: TracGuide, TracAdmin