redis: fix binding
All checks were successful
/ check (push) Successful in 58s
All checks were successful
/ check (push) Successful in 58s
This commit is contained in:
parent
b492d1be58
commit
005f45bfab
1 changed files with 3 additions and 2 deletions
|
@ -1,10 +1,11 @@
|
|||
{...}: {
|
||||
{pkgs, ...}: {
|
||||
environment.systemPackages = [pkgs.redis-dump];
|
||||
services.redis.servers = {
|
||||
forgejo = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
port = 6379;
|
||||
bind = "100.94.214.100";
|
||||
bind = null;
|
||||
databases = 16;
|
||||
logLevel = "debug";
|
||||
requirePass = "forgejo";
|
||||
|
|
Loading…
Reference in a new issue