mirror of
https://github.com/wallabag/docker.git
synced 2026-02-15 14:27:38 +01:00
62
config/parameters.yml
Normal file
62
config/parameters.yml
Normal file
@ -0,0 +1,62 @@
|
||||
parameters:
|
||||
database_driver: ${SYMFONY__ENV__DATABASE_DRIVER:-pdo_sqlite}
|
||||
database_driver_class: ${SYMFONY__ENV__DATABASE_DRIVER_CLASS:-~}
|
||||
database_host: ${SYMFONY__ENV__DATABASE_HOST:-127.0.0.1}
|
||||
database_port: ${SYMFONY__ENV__DATABASE_PORT:-~}
|
||||
database_name: ${SYMFONY__ENV__DATABASE_NAME:-symfony}
|
||||
database_user: ${SYMFONY__ENV__DATABASE_USER:-root}
|
||||
database_password: ${SYMFONY__ENV__DATABASE_PASSWORD:-~}
|
||||
database_path: "%kernel.root_dir%/../data/db/wallabag.sqlite"
|
||||
database_table_prefix: wallabag_
|
||||
database_socket: null
|
||||
database_charset: ${SYMFONY__ENV__DATABASE_CHARSET:-utf8}
|
||||
|
||||
domain_name: ${SYMFONY__ENV__DOMAIN_NAME:-https://your-wallabag-url-instance.com}
|
||||
server_name: ${SYMFONY__ENV__SERVER_NAME:-"Your wallabag instance"}
|
||||
|
||||
mailer_transport: ${SYMFONY__ENV__MAILER_TRANSPORT:-smtp}
|
||||
mailer_user: ${SYMFONY__ENV__MAILER_USER:-~}
|
||||
mailer_password: ${SYMFONY__ENV__MAILER_PASSWORD:-~}
|
||||
mailer_host: ${SYMFONY__ENV__MAILER_HOST:-127.0.0.1}
|
||||
mailer_port: ${SYMFONY__ENV__MAILER_PORT:-25}
|
||||
mailer_encryption: ${SYMFONY__ENV__MAILER_ENCRYPTION:-~}
|
||||
mailer_auth_mode: ${SYMFONY__ENV__MAILER_AUTH_MODE:-~}
|
||||
|
||||
locale: ${SYMFONY__ENV__LOCALE:-en}
|
||||
|
||||
# A secret key that's used to generate certain security-related tokens
|
||||
secret: ${SYMFONY__ENV__SECRET:-~}
|
||||
|
||||
# two factor stuff
|
||||
twofactor_auth: ${SYMFONY__ENV__TWOFACTOR_AUTH:-true}
|
||||
twofactor_sender: ${SYMFONY__ENV__TWOFACTOR_SENDER:-no-reply@wallabag.org}
|
||||
|
||||
# fosuser stuff
|
||||
fosuser_registration: ${SYMFONY__ENV__FOSUSER_REGISTRATION:-true}
|
||||
fosuser_confirmation: ${SYMFONY__ENV__FOSUSER_CONFIRMATION:-true}
|
||||
|
||||
fos_oauth_server_access_token_lifetime: 3600
|
||||
fos_oauth_server_refresh_token_lifetime: 1209600
|
||||
|
||||
from_email: ${SYMFONY__ENV__FROM_EMAIL:-wallabag@example.com}
|
||||
|
||||
rss_limit: 50
|
||||
|
||||
# RabbitMQ processing
|
||||
rabbitmq_host: localhost
|
||||
rabbitmq_port: 5672
|
||||
rabbitmq_user: guest
|
||||
rabbitmq_password: guest
|
||||
rabbitmq_prefetch_count: 10
|
||||
|
||||
# Redis processing
|
||||
redis_scheme: ${SYMFONY__ENV__REDIS_SCHEME:-tcp}
|
||||
redis_host: ${SYMFONY__ENV__REDIS_HOST:-redis}
|
||||
redis_port: ${SYMFONY__ENV__REDIS_PORT:-6379}
|
||||
redis_path: ${SYMFONY__ENV__REDIS_PATH:-~}
|
||||
redis_password: ${SYMFONY__ENV__REDIS_PASSWORD:-~}
|
||||
|
||||
# Sentry
|
||||
sentry_dsn: ${SYMFONY__ENV__SENTRY_DSN:-~}
|
||||
|
||||
session_handler: ${SESSION_HANDLER:-session.handler.native_file}
|
||||
17
config/wallabag-php.ini
Normal file
17
config/wallabag-php.ini
Normal file
@ -0,0 +1,17 @@
|
||||
memory_limit = ${PHP_MEMORY_LIMIT:-512M}
|
||||
|
||||
max_execution_time = ${PHP_MAX_EXECUTION_TIME:-60}
|
||||
|
||||
date.time = ${PHP_TIMEZONE:-Europe/Paris}
|
||||
|
||||
display_errors = off
|
||||
|
||||
session.save_handler = redis
|
||||
session.save_path = "tcp://${PHP_SESSION_REDIS_HOST}:6379?database=2"
|
||||
|
||||
opcache.enable=1
|
||||
opcache.interned_strings_buffer=8
|
||||
opcache.max_accelerated_files=10000
|
||||
opcache.memory_consumption=128
|
||||
opcache.save_comments=1
|
||||
opcache.revalidate_freq=1
|
||||
Reference in New Issue
Block a user