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.local" => "\\OC\\Memcache\\Redis",
|
||||||
"memcache.locking" => "\\OC\\Memcache\\Redis",
|
"memcache.locking" => "\\OC\\Memcache\\Redis",
|
||||||
"memcache.distributed" => "\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': {
|
'systemd-timers': {
|
||||||
'nextcloud-cron': {
|
'nextcloud-cron': {
|
||||||
'command': '/usr/bin/sudo -u www-data /usr/bin/php -f /opt/nextcloud/cron.php',
|
'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():
|
for name, conf in node.metadata.get('redis').items():
|
||||||
files[f'/etc/redis/{name}.conf'] = {
|
files[f'/etc/redis/{name}.conf'] = {
|
||||||
'content': '\n'.join(
|
'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',
|
'owner': 'redis',
|
||||||
'triggers': [
|
'triggers': [
|
||||||
|
|
|
@ -10,7 +10,9 @@ defaults = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'redis': {
|
'redis': {
|
||||||
'server': {},
|
'server': {
|
||||||
|
'port': '6379',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,10 +40,10 @@ def config(metadata):
|
||||||
redis[name] = {
|
redis[name] = {
|
||||||
'bind': '127.0.0.1 ::1',
|
'bind': '127.0.0.1 ::1',
|
||||||
'protected-mode': 'yes',
|
'protected-mode': 'yes',
|
||||||
'port': '6379',
|
'port': '0',
|
||||||
'tcp-backlog': '511',
|
'tcp-backlog': '511',
|
||||||
'unixsocket': f'/var/run/redis-{name}/redis.sock',
|
'unixsocket': f'/var/run/redis-{name}/redis.sock',
|
||||||
'unixsocketperm': '700',
|
'unixsocketperm': '777',
|
||||||
'timeout': '0',
|
'timeout': '0',
|
||||||
'tcp-keepalive': '300',
|
'tcp-keepalive': '300',
|
||||||
'daemonize': 'yes',
|
'daemonize': 'yes',
|
||||||
|
@ -100,6 +102,7 @@ def config(metadata):
|
||||||
'dynamic-hz': 'yes',
|
'dynamic-hz': 'yes',
|
||||||
'aof-rewrite-incremental-fsync': 'yes',
|
'aof-rewrite-incremental-fsync': 'yes',
|
||||||
'rdb-save-incremental-fsync': 'yes',
|
'rdb-save-incremental-fsync': 'yes',
|
||||||
|
**metadata.get(f'redis/{name}', {}),
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
servers = "127.0.0.1";
|
servers = "/var/run/redis-rspamd/redis.sock";
|
||||||
|
|
|
@ -10,6 +10,9 @@ defaults = {
|
||||||
'rspamd': {},
|
'rspamd': {},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'redis': {
|
||||||
|
'rspamd': {},
|
||||||
|
},
|
||||||
'rspamd': {
|
'rspamd': {
|
||||||
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
|
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
|
||||||
'ip_whitelist': set(),
|
'ip_whitelist': set(),
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
],
|
],
|
||||||
'bundles': [
|
'bundles': [
|
||||||
'wireguard',
|
'wireguard',
|
||||||
'redis',
|
|
||||||
],
|
],
|
||||||
'metadata': {
|
'metadata': {
|
||||||
'id': '890848b2-a900-4f74-ad5b-b811fbb4f0bc',
|
'id': '890848b2-a900-4f74-ad5b-b811fbb4f0bc',
|
||||||
|
@ -28,11 +27,6 @@
|
||||||
'master_node': 'htz.mails',
|
'master_node': 'htz.mails',
|
||||||
'hostname': 'second.resolver.name',
|
'hostname': 'second.resolver.name',
|
||||||
},
|
},
|
||||||
'redis': {
|
|
||||||
'nextcloud': {
|
|
||||||
'port': '6380',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
# 'postfix': {
|
# 'postfix': {
|
||||||
# 'master_node': 'htz.mails',
|
# 'master_node': 'htz.mails',
|
||||||
# 'hostname': 'mail2.sublimity.de',
|
# 'hostname': 'mail2.sublimity.de',
|
||||||
|
|
Loading…
Reference in a new issue