module.nix: explicitly disable PrivateIPC
All checks were successful
Build / build (push) Successful in 12m55s
Build / check (push) Successful in 11m32s
Build / docs (push) Successful in 15m46s

This commit is contained in:
2025-11-09 16:07:19 +09:00
parent 0457a2317d
commit 0294381804

View File

@@ -113,6 +113,7 @@ in
# Needed to communicate with MySQL. # Needed to communicate with MySQL.
PrivateNetwork = false; PrivateNetwork = false;
PrivateIPC = false;
IPAddressDeny = IPAddressDeny =
lib.optionals (lib.elem cfg.settings.mysql.host [ null "localhost" "127.0.0.1" ]) [ "any" ]; lib.optionals (lib.elem cfg.settings.mysql.host [ null "localhost" "127.0.0.1" ]) [ "any" ];