################################################################ # Neo4j configuration # ################################################################ #*************************************************************** # Server configuration #*************************************************************** # location of the database directory org.neo4j.server.database.location=tmp/n4j/<%= @environment %>/data/graph.db # let the webserver only listen on the specified IP. Default # is localhost (only accept local connections). Uncomment to allow # any connection. Please see the security section in the neo4j # manual before modifying this. #org.neo4j.server.webserver.address=0.0.0.0 # # HTTP Connector # # Turn http-support on/off, mostly if you want your # server accessible via https only. org.neo4j.server.webserver.http.enabled=true # http port (for all data, administrative, and UI access) org.neo4j.server.webserver.port=<%= @port %> # # HTTPS Connector # # Turn https-support on/off org.neo4j.server.webserver.https.enabled=true # https port (for all data, administrative, and UI access) org.neo4j.server.webserver.https.port=<%= @secure_port %> # Certificate location (auto generated if the file does not exist) org.neo4j.server.webserver.https.cert.location=tmp/n4j/<%= @environment %>/snakeoil.cert # Private key location (auto generated if the file does not exist) org.neo4j.server.webserver.https.key.location=tmp/n4j/<%= @environment %>/snakeoil.key # Internally generated keystore (don't try to put your own # keystore there, it will get deleted when the server starts) org.neo4j.server.webserver.https.keystore.location=tmp/n4j/<%= @environment %>/keystore #***************************************************************** # Administration client configuration #***************************************************************** # location of the servers round-robin database directory. possible values: # - absolute path like /var/rrd # - path relative to the server working directory like data/rrd # - commented out, will default to the database data directory. org.neo4j.server.webadmin.rrdb.location=tmp/n4j/<%= @environment %>/data/rrd # REST endpoint for the data API # Note the / in the end is mandatory org.neo4j.server.webadmin.data.uri=/db/data/ # REST endpoint of the administration API (used by Webadmin) org.neo4j.server.webadmin.management.uri=/db/manage/ # Low-level graph engine tuning file org.neo4j.server.db.tuning.properties=tmp/n4j/<%= @environment %>/neo4j.properties #Comma separated list of JAXRS packages contains JAXRS Resoruce, one package name for each mountpoint. #the listed package names will be loaded under the mountpoints specified, uncomment this line #to mount the org.neo4j.examples.server.unmanaged.HelloWorldResource.java from neo4j-examples #under /examples/unmanaged, resulting in a final URL of http://localhost:7474/examples/unmanaged/helloworld/{nodeId} #org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.examples.server.unmanaged=/examples/unmanaged org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.server.extension.test.delete=/cleandb org.neo4j.server.thirdparty.delete.key=all-gone