nixos/neo4j: always set http values, even when disabled (#341586)

authored by Sandro and committed by GitHub 76d7694a 58867d7c

+3 -5
+3 -5
nixos/modules/services/databases/neo4j.nix
··· 52 52 server.directories.run=${cfg.directories.home}/run 53 53 54 54 # HTTP Connector 55 - ${lib.optionalString (cfg.http.enable) '' 56 - server.http.enabled=${lib.boolToString cfg.http.enable} 57 - server.http.listen_address=${cfg.http.listenAddress} 58 - server.http.advertised_address=${cfg.http.listenAddress} 59 - ''} 55 + server.http.enabled=${lib.boolToString cfg.http.enable} 56 + server.http.listen_address=${cfg.http.listenAddress} 57 + server.http.advertised_address=${cfg.http.listenAddress} 60 58 61 59 # HTTPS Connector 62 60 server.https.enabled=${lib.boolToString cfg.https.enable}