wallabag/app/config/parameters.yml.dist

68 lines
1.9 KiB
Plaintext
Raw Permalink Normal View History

2015-01-22 07:30:07 +00:00
# This file is a "template" of what your parameters.yml file should look like
parameters:
# Uncomment these settings or manually update your parameters.yml
# to use docker-compose
#
# database_driver: %env.database_driver%
# database_host: %env.database_host%
# database_port: %env.database_port%
# database_name: %env.database_name%
# database_user: %env.database_user%
# database_password: %env.database_password%
database_driver: pdo_mysql
2015-09-26 09:56:15 +00:00
database_host: 127.0.0.1
2015-02-04 20:26:15 +00:00
database_port: ~
2017-06-01 07:17:05 +00:00
database_name: wallabag
2015-02-04 20:26:15 +00:00
database_user: root
database_password: ~
# For SQLite, database_path should be "%kernel.project_dir%/data/db/wallabag.sqlite"
database_path: null
2015-03-28 10:29:19 +00:00
database_table_prefix: wallabag_
database_socket: null
2017-05-31 20:50:18 +00:00
# with PostgreSQL and SQLite, you must set "utf8"
database_charset: utf8mb4
2015-01-22 07:30:07 +00:00
domain_name: https://your-wallabag-instance.wallabag.org
server_name: "Your wallabag instance"
2022-12-15 11:02:52 +00:00
mailer_dsn: smtp://127.0.0.1
2015-01-22 07:30:07 +00:00
locale: en
2015-01-22 07:30:07 +00:00
# A secret key that's used to generate certain security-related tokens
secret: CHANGE_ME_TO_SOMETHING_SECRET_AND_RANDOM
2015-01-22 09:14:37 +00:00
2016-01-21 07:53:09 +00:00
# two factor stuff
2015-10-15 11:17:21 +00:00
twofactor_sender: no-reply@wallabag.org
2016-02-04 15:06:05 +00:00
# fosuser stuff
fosuser_registration: false
fosuser_confirmation: true
2015-01-23 13:58:17 +00:00
# how long the access token should live in seconds for the API
fos_oauth_server_access_token_lifetime: 3600
# how long the refresh token should life in seconds for the API
fos_oauth_server_refresh_token_lifetime: 1209600
2015-03-07 22:25:36 +00:00
from_email: no-reply@wallabag.org
2016-01-15 07:24:32 +00:00
rss_limit: 50
# RabbitMQ processing
rabbitmq_host: localhost
rabbitmq_port: 5672
rabbitmq_user: guest
rabbitmq_password: guest
2016-12-15 20:58:20 +00:00
rabbitmq_prefetch_count: 10
# Redis processing
redis_scheme: tcp
redis_host: localhost
redis_port: 6379
redis_path: null
2016-11-20 19:23:30 +00:00
redis_password: null
# sentry logging
sentry_dsn: ~