Advertisement
Guest User

Untitled

a guest
Feb 24th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. # This is the main configuration file for the application.
  2. # ~~~~~
  3.  
  4. # Secret key
  5. # ~~~~~
  6. # The secret key is used to secure cryptographics functions.
  7. # If you deploy your application to several instances be sure to use the same key!
  8. application.secret="%APPLICATION_SECRET%"
  9.  
  10. # The application languages
  11. # ~~~~~
  12. application.langs="en"
  13.  
  14. # Global object class
  15. # ~~~~~
  16. # Define the Global object class for this application.
  17. # Default to Global in the root package.
  18. # application.global=Global
  19.  
  20. # Router
  21. # ~~~~~
  22. # Define the Router object to use for this application.
  23. # This router will be looked up first when the application is starting up,
  24. # so make sure this is the entry point.
  25. # Furthermore, it's assumed your route file is named properly.
  26. # So for an application router like `my.application.Router`,
  27. # you may need to define a router file `conf/my.application.routes`.
  28. # Default to Routes in the root package (and conf/routes)
  29. # application.router=my.application.Routes
  30.  
  31. # Database configuration
  32. # ~~~~~
  33. # You can declare as many datasources as you want.
  34. # By convention, the default datasource is named `default`
  35. #
  36. #開発用データベース設定
  37. #db.default.driver=com.mysql.jdbc.Driver
  38. #db.default.url="jdbc:mysql://192.168.24.90/gomf"
  39. #db.default.user=USERNAME
  40. #db.default.pass="PASSW0RD"
  41.  
  42. #Steam API KEY
  43. steam.apiKey="1AA58BBB363061458D18CD7B04356B9B"
  44.  
  45. # Evolutions
  46. # ~~~~~
  47. # You can disable evolutions if needed
  48. # evolutionplugin=disabled
  49.  
  50. # Logger
  51. # ~~~~~
  52. # You can also configure logback (http://logback.qos.ch/),
  53. # by providing an application-logger.xml file in the conf directory.
  54.  
  55. # Root logger:
  56. logger.root=ERROR
  57.  
  58. # Logger used by the framework:
  59. logger.play=INFO
  60.  
  61. # Logger provided to your application:
  62. logger.application=DEBUG
  63.  
  64. # cache設定
  65.  
  66. # encacheを無効化
  67. ehcacheplugin=disabled
  68.  
  69. # memcachedサーバーの設定
  70. memcached.hosts="localhost:11211"
  71.  
  72. # memcachedのログレベル
  73. logger.memcached=DEBUG
  74.  
  75. #MAP一覧
  76. csgo.maps = ["dust2", "inferno", "nuke", "dust", "mill", "mirage", "cache", "blackgold", "castle", "mist", "overgrown", "overpass", "train"]
  77.  
  78. #サーバー一覧
  79.  
  80. csgo.servers = [
  81. //NEXT 1st Server
  82. {
  83. host: "185.126.217.234",
  84. port: 27016,
  85. rconPassword: "123456",
  86. svPassword: ""
  87. },
  88. //NEXT 2nd Server
  89. {
  90. host: "next.five-seven.net",
  91. port: 27016,
  92. rconPassword: "ame",
  93. svPassword: "next"
  94. }
  95. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement