config.php-dist 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <?php
  2. // *******************************************
  3. // *** Database configuration (important!) ***
  4. // *******************************************
  5. define('DB_TYPE', "pgsql"); // or mysql
  6. define('DB_HOST', "localhost");
  7. define('DB_USER', "fox");
  8. define('DB_NAME', "fox");
  9. define('DB_PASS', "XXXXXX");
  10. define('DB_PORT', ''); // usually 5432 for PostgreSQL, 3306 for MySQL
  11. define('MYSQL_CHARSET', 'UTF8');
  12. // Connection charset for MySQL. If you have a legacy database and/or experience
  13. // garbage unicode characters with this option, try setting it to a blank string.
  14. // ***********************************
  15. // *** Basic settings (important!) ***
  16. // ***********************************
  17. define('SELF_URL_PATH', 'http://yourserver/tt-rss/');
  18. // Full URL of your tt-rss installation. This should be set to the
  19. // location of tt-rss directory, e.g. http://yourserver/tt-rss/
  20. // You need to set this option correctly otherwise several features
  21. // including PUSH, bookmarklets and browser integration will not work properly.
  22. define('FEED_CRYPT_KEY', '');
  23. // Key used for encryption of passwords for password-protected feeds
  24. // in the database. A string of 24 random characters. If left blank, encryption
  25. // is not used. Requires mcrypt functions.
  26. // Warning: changing this key will make your stored feed passwords impossible
  27. // to decrypt.
  28. define('SINGLE_USER_MODE', false);
  29. // Operate in single user mode, disables all functionality related to
  30. // multiple users and authentication. Enabling this assumes you have
  31. // your tt-rss directory protected by other means (e.g. http auth).
  32. define('SIMPLE_UPDATE_MODE', false);
  33. // Enables fallback update mode where tt-rss tries to update feeds in
  34. // background while tt-rss is open in your browser.
  35. // If you don't have a lot of feeds and don't want to or can't run
  36. // background processes while not running tt-rss, this method is generally
  37. // viable to keep your feeds up to date.
  38. // Still, there are more robust (and recommended) updating methods
  39. // available, you can read about them here: http://tt-rss.org/wiki/UpdatingFeeds
  40. // *****************************
  41. // *** Files and directories ***
  42. // *****************************
  43. define('PHP_EXECUTABLE', '/usr/bin/php');
  44. // Path to PHP *COMMAND LINE* executable, used for various command-line tt-rss programs and
  45. // update daemon. Do not try to use CGI binary here, it won't work. If you see HTTP headers
  46. // being displayed while running tt-rss scripts, then most probably you are using the CGI
  47. // binary. If you are unsure what to put in here, ask your hosting provider.
  48. define('LOCK_DIRECTORY', 'lock');
  49. // Directory for lockfiles, must be writable to the user you run
  50. // daemon process or cronjobs under.
  51. define('CACHE_DIR', 'cache');
  52. // Local cache directory for RSS feed content.
  53. define('ICONS_DIR', "feed-icons");
  54. define('ICONS_URL', "feed-icons");
  55. // Local and URL path to the directory, where feed favicons are stored.
  56. // Unless you really know what you're doing, please keep those relative
  57. // to tt-rss main directory.
  58. // **********************
  59. // *** Authentication ***
  60. // **********************
  61. // Please see PLUGINS below to configure various authentication modules.
  62. define('AUTH_AUTO_CREATE', true);
  63. // Allow authentication modules to auto-create users in tt-rss internal
  64. // database when authenticated successfully.
  65. define('AUTH_AUTO_LOGIN', true);
  66. // Automatically login user on remote or other kind of externally supplied
  67. // authentication, otherwise redirect to login form as normal.
  68. // If set to true, users won't be able to set application language
  69. // and settings profile.
  70. // *********************
  71. // *** Feed settings ***
  72. // *********************
  73. define('FORCE_ARTICLE_PURGE', 0);
  74. // When this option is not 0, users ability to control feed purging
  75. // intervals is disabled and all articles (which are not starred)
  76. // older than this amount of days are purged.
  77. // *** PubSubHubbub settings ***
  78. define('PUBSUBHUBBUB_HUB', '');
  79. // URL to a PubSubHubbub-compatible hub server. If defined, "Published
  80. // articles" generated feed would automatically become PUSH-enabled.
  81. define('PUBSUBHUBBUB_ENABLED', false);
  82. // Enable client PubSubHubbub support in tt-rss. When disabled, tt-rss
  83. // won't try to subscribe to PUSH feed updates.
  84. // *********************
  85. // *** Sphinx search ***
  86. // *********************
  87. define('SPHINX_ENABLED', false);
  88. // Enable fulltext search using Sphinx (http://www.sphinxsearch.com)
  89. // Please see http://tt-rss.org/wiki/SphinxSearch for more information.
  90. define('SPHINX_SERVER', 'localhost:9312');
  91. // Hostname:port combination for the Sphinx server.
  92. define('SPHINX_INDEX', 'ttrss, delta');
  93. // Index name in Sphinx configuration. You can specify multiple indexes
  94. // as a comma-separated string.
  95. // Example configuration files are available on tt-rss wiki.
  96. // ***********************************
  97. // *** Self-registrations by users ***
  98. // ***********************************
  99. define('ENABLE_REGISTRATION', false);
  100. // Allow users to register themselves. Please be aware that allowing
  101. // random people to access your tt-rss installation is a security risk
  102. // and potentially might lead to data loss or server exploit. Disabled
  103. // by default.
  104. define('REG_NOTIFY_ADDRESS', 'user@your.domain.dom');
  105. // Email address to send new user notifications to.
  106. define('REG_MAX_USERS', 10);
  107. // Maximum amount of users which will be allowed to register on this
  108. // system. 0 - no limit.
  109. // **********************************
  110. // *** Cookies and login sessions ***
  111. // **********************************
  112. define('SESSION_COOKIE_LIFETIME', 86400);
  113. // Default lifetime of a session (e.g. login) cookie. In seconds,
  114. // 0 means cookie will be deleted when browser closes.
  115. define('SESSION_CHECK_ADDRESS', 1);
  116. // Check client IP address when validating session:
  117. // 0 - disable checking
  118. // 1 - check first 3 octets of an address (recommended)
  119. // 2 - check first 2 octets of an address
  120. // 3 - check entire address
  121. // *********************************
  122. // *** Email and digest settings ***
  123. // *********************************
  124. define('SMTP_FROM_NAME', 'Tiny Tiny RSS');
  125. define('SMTP_FROM_ADDRESS', 'noreply@your.domain.dom');
  126. // Name, address and subject for sending outgoing mail. This applies
  127. // to password reset notifications, digest emails and any other mail.
  128. define('DIGEST_SUBJECT', '[tt-rss] New headlines for last 24 hours');
  129. // Subject line for email digests
  130. define('SMTP_SERVER', '');
  131. // Hostname:port combination to send outgoing mail (i.e. localhost:25).
  132. // Blank - use system MTA.
  133. define('SMTP_LOGIN', '');
  134. define('SMTP_PASSWORD', '');
  135. // These two options enable SMTP authentication when sending
  136. // outgoing mail. Only used with SMTP_SERVER.
  137. define('SMTP_SECURE', '');
  138. // used to select a secure SMTP conneciton. can be tls, ssl or enpty
  139. // ***************************************
  140. // *** Other settings (less important) ***
  141. // ***************************************
  142. define('CHECK_FOR_NEW_VERSION', true);
  143. // Check for new versions of tt-rss automatically.
  144. define('ENABLE_GZIP_OUTPUT', false);
  145. // Selectively gzip output to improve wire performance. This requires
  146. // PHP Zlib extension on the server.
  147. // Enabling this can break tt-rss in several httpd/php configurations,
  148. // if you experience weird errors and tt-rss failing to start, blank pages
  149. // after login, or content encoding errors, disable it.
  150. define('PLUGINS', 'auth_internal, note, updater');
  151. // Comma-separated list of plugins to load automatically for all users.
  152. // System plugins have to be specified here. Please enable at least one
  153. // authentication plugin here (auth_*).
  154. // Users may enable other user plugins from Preferences/Plugins but may not
  155. // disable plugins specified in this list.
  156. // Disabling auth_internal in this list would automatically disable
  157. // reset password link on the login form.
  158. define('LOG_DESTINATION', 'sql');
  159. // Log destination to use. Possible values: sql (uses internal logging
  160. // you can read in Preferences -> System), syslog - logs to system log.
  161. // Setting this to blank uses PHP logging (usually to http server
  162. // error.log).
  163. define('CONFIG_VERSION', 26);
  164. // Expected config version. Please update this option in config.php
  165. // if necessary (after migrating all new options from this file).
  166. // vim:ft=php
  167. ?>