Switching over to using unix sockets for ICP
This commit is contained in:
@@ -13,10 +13,14 @@
|
||||
valkey_service_enabled: true
|
||||
valkey_service_state: "started"
|
||||
|
||||
# Network Security (localhost only - matches PostgreSQL pattern)
|
||||
valkey_bind: "127.0.0.1"
|
||||
valkey_port: 6379
|
||||
valkey_protected_mode: true
|
||||
# Network Security (Unix socket with localhost TCP for compatibility)
|
||||
valkey_bind: "127.0.0.1" # Listen on localhost for apps that don't support Unix sockets
|
||||
valkey_port: 6379 # Keep TCP port for compatibility
|
||||
valkey_protected_mode: true # Enable protection for TCP
|
||||
|
||||
# Unix socket configuration (also enabled for better performance)
|
||||
valkey_unixsocket: "/run/valkey/valkey.sock"
|
||||
valkey_unixsocketperm: 777 # Allows container access
|
||||
|
||||
# Authentication
|
||||
valkey_password: "{{ vault_valkey_password }}"
|
||||
|
||||
Reference in New Issue
Block a user