Files
commafeed/commafeed-server/config.yml.example

157 lines
4.5 KiB
Plaintext
Raw Normal View History

2014-08-10 21:47:43 +02:00
# CommaFeed settings
# ------------------
app:
2014-08-10 21:47:43 +02:00
# url used to access commafeed
2014-08-08 21:57:16 +02:00
publicUrl: http://localhost:8082/
# whether to expose a robots.txt file that disallows web crawlers and search engine indexers
hideFromWebCrawlers: true
2023-07-09 11:10:27 +02:00
# whether to allow user registrations
allowRegistrations: false
# whether to enable strict password validation (1 uppercase char, 1 lowercase char, 1 digit, 1 special char)
strictPasswordPolicy: true
2023-07-09 11:10:27 +02:00
# create a demo account the first time the app starts
createDemoAccount: false
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# put your google analytics tracking code here
googleAnalyticsTrackingCode:
2023-07-09 11:10:27 +02:00
2015-06-04 12:28:20 +02:00
# put your google server key (used for youtube favicon fetching)
googleAuthKey:
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# number of http threads
backgroundThreads: 3
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# number of database updating threads
databaseUpdateThreads: 1
2023-07-09 11:10:27 +02:00
# rows to delete per query while cleaning up old entries
databaseCleanupBatchSize: 100
2014-08-10 21:47:43 +02:00
# settings for sending emails (password recovery)
smtpHost:
smtpPort:
smtpTls: false
smtpUserName:
smtpPassword:
2014-11-07 09:41:01 +01:00
smtpFromAddress:
# Graphite Metric settings
# Allows those who use Graphite to have CommaFeed send metrics for graphing (time in seconds)
graphiteEnabled: false
graphitePrefix: "test.commafeed"
graphiteHost: "localhost"
graphitePort: 2003
graphiteInterval: 60
2023-07-09 11:10:27 +02:00
2023-05-31 07:36:50 +02:00
# whether this commafeed instance has a lot of feeds to refresh
2014-08-10 21:47:43 +02:00
# leave this to false in almost all cases
heavyLoad: false
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# minimum amount of time commafeed will wait before refreshing the same feed
refreshIntervalMinutes: 5
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# if enabled, images in feed entries will be proxied through the server instead of accessed directly by the browser
2023-07-09 11:10:27 +02:00
# useful if commafeed is usually accessed through a restricting proxy
imageProxyEnabled: false
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# database query timeout (in milliseconds), 0 to disable
queryTimeout: 0
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# time to keep unread statuses (in days), 0 to disable
keepStatusDays: 0
2023-07-09 11:10:27 +02:00
# entries to keep per feed, old entries will be deleted, 0 to disable
maxFeedCapacity: 500
2023-05-30 08:53:26 +02:00
# limit the number of feeds a user can subscribe to, 0 to disable
maxFeedsPerUser: 0
2014-08-10 21:47:43 +02:00
# cache service to use, possible values are 'noop' and 'redis'
2014-08-09 13:26:03 +02:00
cache: noop
2023-07-09 11:10:27 +02:00
2014-08-10 21:47:43 +02:00
# announcement string displayed on the main page
announcement:
2023-07-09 11:10:27 +02:00
2018-07-31 15:21:45 +02:00
# user-agent string that will be used by the http client, leave empty for the default one
userAgent:
2023-07-09 11:10:27 +02:00
# enable websocket connection so the server can notify the web client that there are new entries for your feeds
websocketEnabled: true
# interval at which the client will send a ping message on the websocket to keep the connection alive
websocketPingInterval: 15m
# if websocket is disabled or the connection is lost, the client will reload the feed tree at this interval
treeReloadInterval: 30s
2014-08-10 21:47:43 +02:00
# Database connection
2023-07-09 11:10:27 +02:00
# -------------------
# for MariaDB
# driverClass is org.mariadb.jdbc.Driver
# url is jdbc:mariadb://localhost/commafeed?autoReconnect=true&failOverReadOnly=false&maxReconnects=20&rewriteBatchedStatements=true
#
2014-08-10 21:47:43 +02:00
# for MySQL
2023-07-09 11:10:27 +02:00
# driverClass is com.mysql.cj.jdbc.Driver
2014-08-10 21:47:43 +02:00
# url is jdbc:mysql://localhost/commafeed?autoReconnect=true&failOverReadOnly=false&maxReconnects=20&rewriteBatchedStatements=true
#
# for PostgreSQL
# driverClass is org.postgresql.Driver
# url is jdbc:postgresql://localhost:5432/commafeed
#
# for Microsoft SQL Server
# driverClass is net.sourceforge.jtds.jdbc.Driver
# url is jdbc:jtds:sqlserver://localhost:1433/commafeed;instance=<instanceName, remove if not needed>
database:
driverClass: org.h2.Driver
2023-12-21 22:27:50 +01:00
url: jdbc:h2:/commafeed/data/db;DEFRAG_ALWAYS=TRUE
user: sa
password: sa
properties:
charSet: UTF-8
2015-02-17 16:51:37 +01:00
validationQuery: "/* CommaFeed Health Check */ SELECT 1"
minSize: 1
maxSize: 50
maxConnectionAge: 30m
2023-07-09 11:10:27 +02:00
server:
applicationConnectors:
- type: http
2014-08-09 19:35:05 +02:00
port: 8082
adminConnectors: [ ]
2023-04-30 16:21:38 +02:00
requestLog:
appenders: [ ]
2023-07-09 11:10:27 +02:00
logging:
2023-04-30 16:03:47 +02:00
level: ERROR
loggers:
2014-08-09 19:35:05 +02:00
com.commafeed: INFO
2014-08-10 21:47:43 +02:00
liquibase: INFO
io.dropwizard.server.ServerFactory: INFO
appenders:
2014-08-09 19:35:05 +02:00
- type: console
- type: file
currentLogFilename: log/commafeed.log
threshold: ALL
archive: true
archivedLogFilenamePattern: log/commafeed-%d.log
archivedFileCount: 5
2014-09-22 09:51:55 +02:00
timeZone: UTC
2023-07-09 11:10:27 +02:00
2014-09-22 09:51:55 +02:00
# Redis pool configuration
# (only used if app.cache is 'redis')
# -----------------------------------
redis:
host: localhost
port: 6379
2023-05-04 08:48:03 +02:00
# username is only required when using ACLs
username:
2023-07-09 11:10:27 +02:00
password:
2014-09-22 09:51:55 +02:00
timeout: 2000
database: 0
maxTotal: 500