Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. azas {
  2.  
  3. jdbc {
  4. # Example MySQL configuration:
  5. driver = "com.mysql.jdbc.Driver"
  6. url = "jdbc:mysql://localhost/zapf"
  7. user = "????"
  8. pass = "????"
  9.  
  10. # H2 configuration for testing
  11. # Saves the database in a single file. You may want to change this
  12. #driver = "org.h2.Driver"
  13. #url = "jdbc:h2:/srv/http/azas/database;MODE=MYSQL"
  14. }
  15.  
  16. http {
  17. # The HTTP port the application listens on. It is strongly recommended, that you
  18. # use a reverse proxy to connect to this port and add TLS-encryption. Furthermore
  19. # the port should not be reachable from outside so the proxy is really the only
  20. # way to connect.
  21. port = 8080
  22. }
  23.  
  24. admin {
  25. # This password is used to get administrative access to all data acquired by azas.
  26. password = "????"
  27. }
  28.  
  29. api {
  30. # Whether it is possible to add new participants and mascots
  31. allowAdd = true
  32.  
  33. # Whether it is possible to edit participants and mascots
  34. allowEdit = true
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement