Files
commafeed/config.dev.yml

128 lines
3.5 KiB
YAML
Raw Normal View History

2014-08-10 21:47:43 +02:00
# CommaFeed settings
# ------------------
2014-08-09 19:35:05 +02:00
app:
2014-08-10 21:47:43 +02:00
# url used to access commafeed
2014-08-09 19:35:05 +02:00
publicUrl: http://localhost:8082/
2014-08-10 21:47:43 +02:00
# wether to allow user registrations
2014-08-09 19:35:05 +02:00
allowRegistrations: true
2014-08-10 21:47:43 +02:00
2014-12-04 10:52:41 +01:00
# create a demo account the first time the app starts
createDemoAccount: false
2014-08-10 21:47:43 +02:00
# put your google analytics tracking code here
2014-08-09 19:35:05 +02:00
googleAnalyticsTrackingCode:
2014-08-10 21:47:43 +02:00
2015-06-04 12:28:20 +02:00
# put your google server key (used for youtube favicon fetching)
googleAuthKey:
2014-08-10 21:47:43 +02:00
# number of http threads
2014-08-09 19:35:05 +02:00
backgroundThreads: 3
2014-08-10 21:47:43 +02:00
# number of database updating threads
2014-08-09 19:35:05 +02:00
databaseUpdateThreads: 1
2014-08-10 21:47:43 +02:00
# settings for sending emails (password recovery)
2014-08-11 14:55:41 +02:00
smtpHost: localhost
smtpPort: 25
2014-08-09 19:35:05 +02:00
smtpTls: false
2014-08-11 14:55:41 +02:00
smtpUserName: user
smtpPassword: pass
# 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
2014-08-10 21:47:43 +02:00
# wether this commafeed instance has a lot of feeds to refresh
# leave this to false in almost all cases
2014-08-09 19:35:05 +02:00
heavyLoad: false
2014-08-10 21:47:43 +02:00
# minimum amount of time commafeed will wait before refreshing the same feed
refreshIntervalMinutes: 5
# wether to enable pubsub
# probably not needed if refreshIntervalMinutes is low
2014-08-09 19:35:05 +02:00
pubsubhubbub: false
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
# useful if commafeed is usually accessed through a restricting proxy
2014-08-09 19:35:05 +02:00
imageProxyEnabled: false
2014-08-10 21:47:43 +02:00
# database query timeout (in milliseconds), 0 to disable
2014-08-09 19:35:05 +02:00
queryTimeout: 0
2014-08-10 21:47:43 +02:00
# time to keep unread statuses (in days), 0 to disable
2014-08-09 19:35:05 +02:00
keepStatusDays: 0
2014-08-10 21:47:43 +02:00
# entries to keep per feed, old entries will be deleted, 0 to disable
maxFeedCapacity: 500
2014-08-10 21:47:43 +02:00
# cache service to use, possible values are 'noop' and 'redis'
2014-08-09 19:35:05 +02:00
cache: noop
2014-08-10 21:47:43 +02:00
# announcement string displayed on the main page
2014-08-09 19:35:05 +02:00
announcement:
2014-08-10 21:47:43 +02:00
# Database connection
# -------------------
# for MySQL
# driverClass is com.mysql.jdbc.Driver
# 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>
2014-08-09 19:35:05 +02:00
database:
driverClass: org.h2.Driver
2016-04-07 12:58:20 +02:00
url: jdbc:h2:./target/example
2014-08-09 19:35:05 +02:00
user: sa
password: sa
properties:
charSet: UTF-8
2015-02-17 16:51:37 +01:00
validationQuery: "/* CommaFeed Health Check */ SELECT 1"
2014-08-09 19:35:05 +02:00
server:
applicationConnectors:
- type: http
port: 8083
adminConnectors:
- type: http
port: 8084
2014-09-22 09:51:55 +02:00
2014-08-09 19:35:05 +02:00
logging:
2014-08-10 17:21:22 +02:00
level: INFO
2014-08-09 19:35:05 +02:00
loggers:
com.commafeed: DEBUG
liquibase: INFO
org.hibernate.SQL: INFO # or ALL for sql debugging
2014-08-10 21:52:46 +02:00
org.hibernate.engine.internal.StatisticalLoggingSessionEventListener: WARN
2014-08-09 19:35:05 +02:00
appenders:
2014-08-10 21:47:43 +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
# Redis pool configuration
# (only used if app.cache is 'redis')
# -----------------------------------
redis:
host: localhost
port: 6379
password:
timeout: 2000
database: 0
maxTotal: 500