multiredis
This commit is contained in:
parent
4e6071183f
commit
75d0043578
7 changed files with 23 additions and 11 deletions
|
@ -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,
|
||||
],
|
||||
);
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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': [
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -1 +1 @@
|
|||
servers = "127.0.0.1";
|
||||
servers = "/var/run/redis-rspamd/redis.sock";
|
||||
|
|
|
@ -10,6 +10,9 @@ defaults = {
|
|||
'rspamd': {},
|
||||
},
|
||||
},
|
||||
'redis': {
|
||||
'rspamd': {},
|
||||
},
|
||||
'rspamd': {
|
||||
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
|
||||
'ip_whitelist': set(),
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue