Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #***************************************************************
- # Server configuration
- #***************************************************************
- #
- # HTTP Connector
- #
- # http port (for all data, administrative, and UI access)
- org.neo4j.server.webserver.port=7474
- # 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
- #
- # 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=7473
- # Certificate location (auto generated if the file does not exist)
- # org.neo4j.server.webserver.https.cert.location=conf/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
- # 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
- #*****************************************************************
- # Administration client configuration
- #*****************************************************************
- # Comma separated list of JAX-RS packages containing JAX-RS resources, 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:${org.neo4j.webserver.port}/examples/unmanaged/helloworld/{nodeId}
- #org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.examples.server.unmanaged=/examples/unmanaged
- #*****************************************************************
- # HTTP logging configuration
- #*****************************************************************
- # HTTP logging is disabled. HTTP logging can be enabled by setting this
- # property to 'true'.
- org.neo4j.server.http.log.enabled=false
- # Logging policy file that governs how HTTP log output is presented and
- # archived. Note: changing the rollover and retention policy is sensible, but
- # changing the output format is less so, since it is configured to use the
- # ubiquitous common log format
- #org.neo4j.server.http.log.config=neo4j-http-logging.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement