Guest User

Untitled

a guest
Dec 20th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. # Play application server port
  2. port=8080
  3.  
  4. # Secret key
  5. # The secret key is used to secure cryptographics functions.
  6. # If you deploy your application to several instances be sure to use the same key!
  7. # You can set the key using the env variable APPLICATION_SECRET or set it here
  8. # Setting it here has higher precedence than env variable.
  9. # application_secret="changeme"
  10.  
  11. # Database configuration
  12. db_url=localhost
  13. db_name=drelephant
  14. db_user=root
  15. db_password=""
  16.  
  17. # Enable web analytics for the application.
  18. # By default analytics is not turned on. Set this property
  19. # to true and paste the javascript snippet into 'public/analytics/track.js' for
  20. # enabling web analytics for the application. You may configure an analytics application
  21. # like piwik. More information on piwik at piwik.org
  22. enable_analytics=false
  23.  
  24. # Set the keytab user and the path to the keytab file if security is enabled.
  25. keytab_user="elephant/gwrd101n00.red.ygrid.yahoo.com"
  26. keytab_location="/etc/grid-keytabs/elephant.keytab"
  27.  
  28. # Additional Configuration
  29. # Check https://www.playframework.com/documentation/2.2.x/ProductionConfiguration
  30. jvm_args="-Devolutionplugin=enabled -DapplyEvolutions.default=true"
  31. jvm_props=" -Devolutionplugin=enabled -DapplyEvolutions.default=true"
  32.  
  33. # Property enables dropwizard metrics for the application.
  34. # More info on Dropwizard metrics at http://metrics.dropwizard.io
  35. # By default metrics are turned which provides several useful stats for
  36. # the application. The following endpoints can be queried once the application is up.
  37. # /ping
  38. # /healthcheck
  39. # /metrics
  40. metrics=true
  41.  
  42. #
  43. # Property enables an agent jar to be loaded along with the Dr. Elephant application.
  44. # The intention with this property is to have the agent publish metrics to other
  45. # applications, although it can do anything else. This property is disabled by default
  46. # and users wishing to make use of it should provide their own implementation of the agent.
  47. #
  48. # More information on writing a jvm agent can be found under the following.
  49. # https://docs.oracle.com/javase/8/docs/api/java/lang/instrument/package-summary.html
  50. #
  51. # Sample configuration of this property is shown below.
  52. # metrics_agent_jar="-javaagent:lib/your_agent.jar"
  53. #
  54. # Sample configuration of the agent with additional options.
  55. # metrics_agent_jar="-javaagent:lib/your_agent.jar=app-name=dr-elephant,app-host=foo"
Add Comment
Please, Sign In to add comment