multiredis

This commit is contained in:
mwiegand 2021-10-22 16:06:42 +02:00
parent 4e6071183f
commit 75d0043578
7 changed files with 23 additions and 11 deletions

View file

@ -25,4 +25,11 @@ $CONFIG = array (
"memcache.local" => "\\OC\\Memcache\\Redis",
"memcache.locking" => "\\OC\\Memcache\\Redis",
"memcache.distributed" => "\OC\Memcache\Redis",
"redis" => [
"host" => "/var/run/redis-nextcloud/redis.sock",
"port" => 0,
"dbindex" => 0,
"password" => "secret",
"timeout" => 1.5,
],
);

View file

@ -52,6 +52,9 @@ defaults = {
},
},
},
'redis': {
'nextcloud': {},
},
'systemd-timers': {
'nextcloud-cron': {
'command': '/usr/bin/sudo -u www-data /usr/bin/php -f /opt/nextcloud/cron.php',

View file

@ -35,7 +35,9 @@ svc_systemd = {
for name, conf in node.metadata.get('redis').items():
files[f'/etc/redis/{name}.conf'] = {
'content': '\n'.join(
f'{key} {value}' for key, value in sorted(conf.items())
f'{key} {value}'
for key, value in sorted(conf.items())
if value is not False
),
'owner': 'redis',
'triggers': [

View file

@ -10,7 +10,9 @@ defaults = {
},
},
'redis': {
'server': {},
'server': {
'port': '6379',
},
},
}
@ -38,10 +40,10 @@ def config(metadata):
redis[name] = {
'bind': '127.0.0.1 ::1',
'protected-mode': 'yes',
'port': '6379',
'port': '0',
'tcp-backlog': '511',
'unixsocket': f'/var/run/redis-{name}/redis.sock',
'unixsocketperm': '700',
'unixsocketperm': '777',
'timeout': '0',
'tcp-keepalive': '300',
'daemonize': 'yes',
@ -100,6 +102,7 @@ def config(metadata):
'dynamic-hz': 'yes',
'aof-rewrite-incremental-fsync': 'yes',
'rdb-save-incremental-fsync': 'yes',
**metadata.get(f'redis/{name}', {}),
}
return {

View file

@ -1 +1 @@
servers = "127.0.0.1";
servers = "/var/run/redis-rspamd/redis.sock";

View file

@ -10,6 +10,9 @@ defaults = {
'rspamd': {},
},
},
'redis': {
'rspamd': {},
},
'rspamd': {
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
'ip_whitelist': set(),

View file

@ -7,7 +7,6 @@
],
'bundles': [
'wireguard',
'redis',
],
'metadata': {
'id': '890848b2-a900-4f74-ad5b-b811fbb4f0bc',
@ -28,11 +27,6 @@
'master_node': 'htz.mails',
'hostname': 'second.resolver.name',
},
'redis': {
'nextcloud': {
'port': '6380',
},
},
# 'postfix': {
# 'master_node': 'htz.mails',
# 'hostname': 'mail2.sublimity.de',