Didn't properly define solr_network

This commit is contained in:
niten 2023-10-10 20:36:58 -07:00
parent 65e5c7a86a
commit 01c706c928
1 changed files with 3 additions and 2 deletions

View File

@ -252,6 +252,7 @@ in {
internal_network.internal = true;
redis_network.internal = true;
ldap_network.internal = true;
solr_network.internal = true;
};
services = let
antivirusPort = 15407;
@ -272,8 +273,6 @@ in {
"external_network"
# For auth lookups
"ldap_network"
# For full text search
"solr_network"
];
volumes = [
"${hostSecrets.dovecotLdapConfig.target-file}:/run/dovecot2/conf.d/ldap.conf:ro"
@ -336,7 +335,9 @@ in {
networks = [
"internal_network"
"external_network"
# For authentication
"ldap_network"
# For full text search
"solr_network"
];
ports = [ "143:143" "993:993" ];