Commit 7c545e26 authored by eyjhb's avatar eyjhb
Browse files

nixos/neo4j: always set http values, even when disabled

parent c960ba48
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -52,11 +52,9 @@ let
    server.directories.run=${cfg.directories.home}/run

    # HTTP Connector
    ${lib.optionalString (cfg.http.enable) ''
    server.http.enabled=${lib.boolToString cfg.http.enable}
    server.http.listen_address=${cfg.http.listenAddress}
    server.http.advertised_address=${cfg.http.listenAddress}
    ''}

    # HTTPS Connector
    server.https.enabled=${lib.boolToString cfg.https.enable}