2015-01-22 07:30:07 +00:00
|
|
|
# This file is a "template" of what your parameters.yml file should look like
|
|
|
|
parameters:
|
2016-01-09 16:27:21 +00:00
|
|
|
# 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%
|
|
|
|
|
2017-05-31 20:36:21 +00:00
|
|
|
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: ~
|
2017-10-13 21:52:15 +00:00
|
|
|
# For SQLite, database_path should be "%kernel.project_dir%/data/db/wallabag.sqlite"
|
2017-05-31 20:36:21 +00:00
|
|
|
database_path: null
|
2015-03-28 10:29:19 +00:00
|
|
|
database_table_prefix: wallabag_
|
2016-10-07 19:00:13 +00:00
|
|
|
database_socket: null
|
2017-05-31 20:50:18 +00:00
|
|
|
# with PostgreSQL and SQLite, you must set "utf8"
|
2017-05-31 20:36:21 +00:00
|
|
|
database_charset: utf8mb4
|
2015-01-22 07:30:07 +00:00
|
|
|
|
2023-06-15 07:06:52 +00:00
|
|
|
domain_name: https://your-wallabag-instance.wallabag.org
|
2020-03-26 14:32:01 +00:00
|
|
|
server_name: "Your wallabag instance"
|
2017-06-01 08:42:19 +00:00
|
|
|
|
2022-12-15 11:02:52 +00:00
|
|
|
mailer_dsn: smtp://127.0.0.1
|
2015-01-22 07:30:07 +00:00
|
|
|
|
2016-10-01 08:52:13 +00:00
|
|
|
locale: en
|
2015-01-22 07:30:07 +00:00
|
|
|
|
|
|
|
# A secret key that's used to generate certain security-related tokens
|
2019-06-05 12:14:17 +00:00
|
|
|
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
|
2023-08-03 08:31:37 +00:00
|
|
|
fosuser_registration: false
|
2016-02-04 13:21:33 +00:00
|
|
|
fosuser_confirmation: true
|
2015-01-23 13:58:17 +00:00
|
|
|
|
2020-04-08 07:18: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
|
2016-09-09 19:02:03 +00:00
|
|
|
|
|
|
|
# Redis processing
|
2016-10-07 19:00:13 +00:00
|
|
|
redis_scheme: tcp
|
2016-09-09 19:02:03 +00:00
|
|
|
redis_host: localhost
|
|
|
|
redis_port: 6379
|
2016-10-07 19:00:13 +00:00
|
|
|
redis_path: null
|
2016-11-20 19:23:30 +00:00
|
|
|
redis_password: null
|
2019-06-05 11:15:15 +00:00
|
|
|
|
|
|
|
# sentry logging
|
|
|
|
sentry_dsn: ~
|