Files
commafeed/commafeed-server/src/test/resources/config.test.yml

133 lines
4.2 KiB
YAML
Raw Normal View History

2022-07-16 18:09:36 +02:00
# CommaFeed settings
# ------------------
app:
# url used to access commafeed
publicUrl: http://localhost:8082/
# whether to expose a robots.txt file that disallows web crawlers and search engine indexers
hideFromWebCrawlers: true
2022-07-16 18:09:36 +02:00
2023-05-31 07:36:50 +02:00
# whether to allow user registrations
2022-07-16 18:09:36 +02:00
allowRegistrations: true
# whether to enable strict password validation (1 uppercase char, 1 lowercase char, 1 digit, 1 special char)
strictPasswordPolicy: true
2022-07-16 18:09:36 +02:00
# create a demo account the first time the app starts
2023-12-16 19:55:34 +01:00
createDemoAccount: true
2022-07-16 18:09:36 +02:00
# put your google analytics tracking code here
googleAnalyticsTrackingCode:
# put your google server key (used for youtube favicon fetching)
googleAuthKey:
# number of http threads
backgroundThreads: 3
# number of database updating threads
databaseUpdateThreads: 1
# rows to delete per query while cleaning up old entries
databaseCleanupBatchSize: 100
2022-07-16 18:09:36 +02:00
# settings for sending emails (password recovery)
smtpHost: localhost
2023-12-21 22:15:39 +01:00
smtpPort: 3025
2022-07-16 18:09:36 +02:00
smtpTls: false
smtpUserName: user
smtpPassword: pass
2023-12-21 22:15:39 +01:00
smtpFromAddress: noreply@commafeed.com
2022-07-16 18:09:36 +02:00
# 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-05-31 07:36:50 +02:00
# whether this commafeed instance has a lot of feeds to refresh
2022-07-16 18:09:36 +02:00
# leave this to false in almost all cases
heavyLoad: false
# minimum amount of time commafeed will wait before refreshing the same feed
refreshIntervalMinutes: 5
# if enabled, images in feed entries will be proxied through the server instead of accessed directly by the browser
# useful if commafeed is usually accessed through a restricting proxy
imageProxyEnabled: false
# database query timeout (in milliseconds), 0 to disable
queryTimeout: 0
# time to keep unread statuses (in days), 0 to disable
keepStatusDays: 0
# entries to keep per feed, old entries will be deleted, 0 to disable
maxFeedCapacity: 500
2023-05-30 08:53:26 +02:00
2024-01-07 20:43:19 +01:00
# entries older than this will be deleted, 0 to disable
maxEntriesAgeDays: 0
2023-05-30 08:53:26 +02:00
# limit the number of feeds a user can subscribe to, 0 to disable
maxFeedsPerUser: 0
2022-07-16 18:09:36 +02:00
# cache service to use, possible values are 'noop' and 'redis'
cache: noop
# announcement string displayed on the main page
announcement:
# user-agent string that will be used by the http client, leave empty for the default one
userAgent:
2023-05-30 08:53:26 +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
2022-07-16 18:09:36 +02:00
# Database connection
2023-07-12 15:03:30 +02:00
# -------------------
# for MariaDB
# driverClass is org.mariadb.jdbc.Driver
# url is jdbc:mariadb://localhost/commafeed?autoReconnect=true&failOverReadOnly=false&maxReconnects=20&rewriteBatchedStatements=true&timezone=UTC
2023-07-12 15:03:30 +02:00
#
2022-07-16 18:09:36 +02:00
# for MySQL
2023-07-09 14:31:46 +02:00
# driverClass is com.mysql.cj.jdbc.Driver
# url is jdbc:mysql://localhost/commafeed?autoReconnect=true&failOverReadOnly=false&maxReconnects=20&rewriteBatchedStatements=true&timezone=UTC
2022-07-16 18:09:36 +02:00
#
# 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
url: jdbc:h2:mem:commafeed
user: sa
password: sa
properties:
charSet: UTF-8
validationQuery: "/* CommaFeed Health Check */ SELECT 1"
2023-05-30 08:53:26 +02:00
server:
adminConnectors: [ ]
2023-05-30 08:53:26 +02:00
2022-07-16 18:09:36 +02:00
logging:
level: INFO
loggers:
com.commafeed: DEBUG
liquibase: INFO
org.hibernate.SQL: INFO # or ALL for sql debugging
org.hibernate.engine.internal.StatisticalLoggingSessionEventListener: WARN
appenders:
- type: console