mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-11 01:15:26 +00:00
Add ability to use Redis with password
This commit is contained in:
parent
5ae8788583
commit
c1683778ab
5 changed files with 8 additions and 0 deletions
|
@ -55,3 +55,4 @@ parameters:
|
||||||
redis_host: localhost
|
redis_host: localhost
|
||||||
redis_port: 6379
|
redis_port: 6379
|
||||||
redis_path: null
|
redis_path: null
|
||||||
|
redis_password: null
|
||||||
|
|
|
@ -39,6 +39,7 @@ Wenn du nicht weißt, welchen Wert du setzen sollst, belasse es bei dem Standard
|
||||||
redis_host: localhost
|
redis_host: localhost
|
||||||
redis_port: 6379
|
redis_port: 6379
|
||||||
redis_path: null
|
redis_path: null
|
||||||
|
redis_password: null
|
||||||
|
|
||||||
Bedeutung von jedem Parameter
|
Bedeutung von jedem Parameter
|
||||||
-----------------------------
|
-----------------------------
|
||||||
|
@ -91,3 +92,4 @@ Bedeutung von jedem Parameter
|
||||||
"redis_host", "localhost", "IP oder Hostname des Zielservers (ignoriert bei Unix Schema)"
|
"redis_host", "localhost", "IP oder Hostname des Zielservers (ignoriert bei Unix Schema)"
|
||||||
"redis_port", "6379", "TCP/IP Port des Zielservers (ignoriert bei Unix Schema)"
|
"redis_port", "6379", "TCP/IP Port des Zielservers (ignoriert bei Unix Schema)"
|
||||||
"redis_path", "null", "Pfad zur Unix Domain Socket Datei, wenn Redis Unix Domain Sockets nutzt"
|
"redis_path", "null", "Pfad zur Unix Domain Socket Datei, wenn Redis Unix Domain Sockets nutzt"
|
||||||
|
"redis_password", "null", "Password defined in the Redis server configuration (parameter `requirepass` in `redis.conf`)"
|
||||||
|
|
|
@ -39,6 +39,7 @@ If you don't know which value you need to set, please leave the default one.
|
||||||
redis_host: localhost
|
redis_host: localhost
|
||||||
redis_port: 6379
|
redis_port: 6379
|
||||||
redis_path: null
|
redis_path: null
|
||||||
|
redis_password: null
|
||||||
|
|
||||||
Meaning of each parameter
|
Meaning of each parameter
|
||||||
-------------------------
|
-------------------------
|
||||||
|
@ -92,3 +93,4 @@ Meaning of each parameter
|
||||||
"redis_host", "localhost", "IP or hostname of the target server (ignored for unix scheme)"
|
"redis_host", "localhost", "IP or hostname of the target server (ignored for unix scheme)"
|
||||||
"redis_port", "6379", "TCP/IP port of the target server (ignored for unix scheme)"
|
"redis_port", "6379", "TCP/IP port of the target server (ignored for unix scheme)"
|
||||||
"redis_path", "null", "Path of the UNIX domain socket file used when connecting to Redis using UNIX domain sockets"
|
"redis_path", "null", "Path of the UNIX domain socket file used when connecting to Redis using UNIX domain sockets"
|
||||||
|
"redis_password", "null", "Password defined in the Redis server configuration (parameter `requirepass` in `redis.conf`)"
|
||||||
|
|
|
@ -39,6 +39,7 @@ Si vous ne savez pas quelle valeur vous devez mettre, laissez celle par défaut.
|
||||||
redis_host: localhost
|
redis_host: localhost
|
||||||
redis_port: 6379
|
redis_port: 6379
|
||||||
redis_path: null
|
redis_path: null
|
||||||
|
redis_password: null
|
||||||
|
|
||||||
Meaning of each parameter
|
Meaning of each parameter
|
||||||
-------------------------
|
-------------------------
|
||||||
|
@ -91,3 +92,4 @@ Meaning of each parameter
|
||||||
"redis_host", "localhost", "IP ou hôte du serveur cible (ignoré pour un schéma unix)"
|
"redis_host", "localhost", "IP ou hôte du serveur cible (ignoré pour un schéma unix)"
|
||||||
"redis_port", "6379", "Port TCP/IP du serveur cible (ignoré pour un schéma unix)"
|
"redis_port", "6379", "Port TCP/IP du serveur cible (ignoré pour un schéma unix)"
|
||||||
"redis_path", "null", "Chemin du fichier de socket du domaine UNIX utilisé quand on se connecte à Redis en utilisant les sockets du domaine UNIX"
|
"redis_path", "null", "Chemin du fichier de socket du domaine UNIX utilisé quand on se connecte à Redis en utilisant les sockets du domaine UNIX"
|
||||||
|
"redis_password", "null", "Mot de passe défini dans la configuration serveur de Redis (paramètre `requirepass` dans `redis.conf`)"
|
||||||
|
|
|
@ -110,6 +110,7 @@ services:
|
||||||
host: '%redis_host%'
|
host: '%redis_host%'
|
||||||
port: '%redis_port%'
|
port: '%redis_port%'
|
||||||
path: '%redis_path%'
|
path: '%redis_path%'
|
||||||
|
password: '%redis_password%'
|
||||||
|
|
||||||
wallabag_core.exception_controller:
|
wallabag_core.exception_controller:
|
||||||
class: Wallabag\CoreBundle\Controller\ExceptionController
|
class: Wallabag\CoreBundle\Controller\ExceptionController
|
||||||
|
|
Loading…
Reference in a new issue