aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-db/neo4j-community/files/neo4j-community-1.7-server_properties.patch')
-rw-r--r--dev-db/neo4j-community/files/neo4j-community-1.7-server_properties.patch47
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-db/neo4j-community/files/neo4j-community-1.7-server_properties.patch b/dev-db/neo4j-community/files/neo4j-community-1.7-server_properties.patch
new file mode 100644
index 0000000..507c62b
--- /dev/null
+++ b/dev-db/neo4j-community/files/neo4j-community-1.7-server_properties.patch
@@ -0,0 +1,47 @@
+--- conf/neo4j-server.properties.orig 2012-04-24 09:07:58.000000000 -0300
++++ conf/neo4j-server.properties 2012-04-24 15:42:01.000000000 -0300
+@@ -8,7 +8,7 @@
+ #***************************************************************
+
+ # location of the database directory
+-org.neo4j.server.database.location=data/graph.db
++org.neo4j.server.database.location=/var/db/neo4j/graph.db
+
+ # let the webserver only listen on the specified IP. Default
+ # is localhost (only accept local connections). Uncomment to allow
+@@ -34,14 +34,14 @@
+ org.neo4j.server.webserver.https.port=7473
+
+ # Certificate location (auto generated if the file does not exist)
+-org.neo4j.server.webserver.https.cert.location=conf/ssl/snakeoil.cert
++org.neo4j.server.webserver.https.cert.location=/etc/neo4j/ssl/snakeoil.cert
+
+ # Private key location (auto generated if the file does not exist)
+-org.neo4j.server.webserver.https.key.location=conf/ssl/snakeoil.key
++org.neo4j.server.webserver.https.key.location=/etc/neo4j/ssl/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=data/keystore
++org.neo4j.server.webserver.https.keystore.location=/var/db/neo4j/keystore
+
+ #*****************************************************************
+ # Administration client configuration
+@@ -51,7 +51,7 @@
+ # - 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=data/rrd
++org.neo4j.server.webadmin.rrdb.location=/var/db/neo4j/rrd
+
+ # REST endpoint for the data API
+ # Note the / in the end is mandatory
+@@ -61,7 +61,7 @@
+ org.neo4j.server.webadmin.management.uri=/db/manage/
+
+ # Low-level graph engine tuning file
+-org.neo4j.server.db.tuning.properties=conf/neo4j.properties
++org.neo4j.server.db.tuning.properties=/etc/neo4j/neo4j.properties
+
+
+ #Comma separated list of JAXRS packages contains JAXRS Resoruce, one package name for each mountpoint.