Advertisement
Guest User

config.ini.php

a guest
May 24th, 2022
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. ; <?php exit; ?> DO NOT REMOVE THIS LINE
  2.  
  3. ; This file contains the default settings for RSS-Bridge. Do not change this
  4. ; file, it will be replaced on the next update of RSS-Bridge! You can specify
  5. ; your own configuration in 'config.ini.php' (copy this file).
  6.  
  7. [system]
  8.  
  9. ; Defines the timezone used by RSS-Bridge
  10. ; Find a list of supported timezones at
  11. ; https://www.php.net/manual/en/timezones.php
  12. ; timezone = "UTC" (default)
  13. timezone = "Europe/Berlin"
  14.  
  15. [cache]
  16.  
  17. ; Defines the cache type used by RSS-Bridge
  18. ; "file" = FileCache (default)
  19. type = "file"
  20.  
  21. ; Allow users to specify custom timeout for specific requests.
  22. ; true = enabled
  23. ; false = disabled (default)
  24. custom_timeout = false
  25.  
  26. [admin]
  27. ; Advertise an email address where people can reach the administrator.
  28. ; This address is displayed on the main page, visible to everyone!
  29. ; "" = Disabled (default)
  30. email = ""
  31.  
  32. ; Show Donation information for bridges if available.
  33. ; This will display a 'Donate' link on the bridge view
  34. ; and a "Donate" button in the HTML view of the bridges feed.
  35. ; true = enabled (default)
  36. ; false = disabled
  37. donations = false
  38.  
  39. [proxy]
  40.  
  41. ; Sets the proxy url (i.e. "tcp://192.168.0.0:32")
  42. ; "" = Proxy disabled (default)
  43. url = ""
  44.  
  45. ; Sets the proxy name that is shown on the bridge instead of the proxy url.
  46. ; "" = Show proxy url
  47. name = "Hidden proxy name"
  48.  
  49. ; Allow users to disable proxy usage for specific requests.
  50. ; true = enabled
  51. ; false = disabled (default)
  52. by_bridge = false
  53.  
  54. [authentication]
  55.  
  56. ; Enables authentication for all requests to this RSS-Bridge instance.
  57. ;
  58. ; Warning: You'll have to upgrade existing feeds after enabling this option!
  59. ;
  60. ; true = enabled
  61. ; false = disabled (default)
  62. enable = true
  63.  
  64. ; The username for authentication. Insert this name when prompted for login.
  65. username = "user"
  66.  
  67. ; The password for authentication. Insert this password when prompted for login.
  68. ; Use a strong password to prevent others from guessing your login!
  69. password = "password"
  70.  
  71. [error]
  72.  
  73. ; Defines how error messages are returned by RSS-Bridge
  74. ;
  75. ; "feed" = As part of the feed (default)
  76. ; "http" = As HTTP error message
  77. ; "none" = No errors are reported
  78. output = "feed"
  79.  
  80. ; Defines how often an error must occur before it is reported to the user
  81. report_limit = 1
  82.  
  83. ; --- Cache specific configuration ---------------------------------------------
  84.  
  85. [SQLiteCache]
  86. file = "cache.sqlite"
  87.  
  88. [MemcachedCache]
  89. host = "localhost"
  90. port = 11211
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement