Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. # default config.yml for Database Maintenance
  2. # config version 1.0.0
  3.  
  4. #MySQL Database details
  5. Database:
  6. AuthMe:
  7. Mysql:
  8. #MySQL server address
  9. Host: 127.0.0.1
  10. #MySQL server port (default 3306)
  11. Port: 3306
  12. #Database name (NOTE! You need to create the database, then the plugin will create the tables.)
  13. DatabaseName: 'mydatabase'
  14. #Table name (the plugin will auto create them)
  15. TableName: 'authme'
  16. #User name
  17. User: 'admin'
  18. #User password
  19. Password: 'cheesecake'
  20. PlotMe:
  21. Mysql:
  22. #MySQL server address
  23. Host: 127.0.0.1
  24. #MySQL server port (default 3306)
  25. Port: 3306
  26. #Database name (NOTE! You need to create the database, then the plugin will create the tables.)
  27. DatabaseName: 'mydatabase'
  28. #Tables names (the plugin will auto create them)
  29. PlotsTableName: 'plotmePlots'
  30. AllowedTableName: 'plotmeAllowed'
  31. #User name
  32. User: 'admin'
  33. #User password
  34. Password: 'cheesecake'
  35. VipZero:
  36. Mysql:
  37. #MySQL server address
  38. Host: 127.0.0.1
  39. #MySQL server port (default 3306)
  40. Port: 3306
  41. #Database name (NOTE! You need to create the database, then the plugin will create the tables.)
  42. DatabaseName: 'mydatabase'
  43. #Table name (the plugin will auto create them)
  44. VipsTableName: 'vips'
  45. #User name
  46. User: 'admin'
  47. #User password
  48. Password: 'cheesecake'
  49.  
  50.  
  51. #Plugin settings
  52. Settings:
  53. #Delay to run the maintenance task after the server starts. | Delay in minutes. (Default 2 minutes)
  54. MaintenanceDelay: 2
  55. #Remove users that were inactive more then this setting. | Inactivity in days. (Default 90 days)
  56. Inactivity: 90
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement