Advertisement
Guest User

Untitled

a guest
Mar 12th, 2014
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. #***************************************************************
  2. # Server configuration
  3. #***************************************************************
  4.  
  5. #
  6. # HTTP Connector
  7. #
  8.  
  9. # http port (for all data, administrative, and UI access)
  10. org.neo4j.server.webserver.port=7474
  11.  
  12. # Let the webserver only listen on the specified IP. Default is localhost (only
  13. # accept local connections). Uncomment to allow any connection. Please see the
  14. # security section in the neo4j manual before modifying this.
  15. #org.neo4j.server.webserver.address=0.0.0.0
  16.  
  17. #
  18. # HTTPS Connector
  19. #
  20.  
  21. # Turn https-support on/off
  22. # org.neo4j.server.webserver.https.enabled=true
  23.  
  24. # https port (for all data, administrative, and UI access)
  25. org.neo4j.server.webserver.https.port=7473
  26.  
  27. # Certificate location (auto generated if the file does not exist)
  28. # org.neo4j.server.webserver.https.cert.location=conf/ssl/snakeoil.cert
  29.  
  30. # Private key location (auto generated if the file does not exist)
  31. # org.neo4j.server.webserver.https.key.location=conf/ssl/snakeoil.key
  32.  
  33. # Internally generated keystore (don't try to put your own
  34. # keystore there, it will get deleted when the server starts)
  35. # org.neo4j.server.webserver.https.keystore.location=data/keystore
  36.  
  37. #*****************************************************************
  38. # Administration client configuration
  39. #*****************************************************************
  40.  
  41.  
  42. # Comma separated list of JAX-RS packages containing JAX-RS resources, one
  43. # package name for each mountpoint. The listed package names will be loaded
  44. # under the mountpoints specified. Uncomment this line to mount the
  45. # org.neo4j.examples.server.unmanaged.HelloWorldResource.java from
  46. # neo4j-examples under /examples/unmanaged, resulting in a final URL of
  47. # http://localhost:${org.neo4j.webserver.port}/examples/unmanaged/helloworld/{nodeId}
  48. #org.neo4j.server.thirdparty_jaxrs_classes=org.neo4j.examples.server.unmanaged=/examples/unmanaged
  49.  
  50. #*****************************************************************
  51. # HTTP logging configuration
  52. #*****************************************************************
  53.  
  54. # HTTP logging is disabled. HTTP logging can be enabled by setting this
  55. # property to 'true'.
  56. org.neo4j.server.http.log.enabled=false
  57.  
  58. # Logging policy file that governs how HTTP log output is presented and
  59. # archived. Note: changing the rollover and retention policy is sensible, but
  60. # changing the output format is less so, since it is configured to use the
  61. # ubiquitous common log format
  62. #org.neo4j.server.http.log.config=neo4j-http-logging.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement