Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.13 KB | None | 0 0
  1. # Make a daily backup of your local database (if sqlite).
  2. DatabaseBackup: true
  3.  
  4. # Database type, sqlite, postgresql or mysql. Do a full server restart for this to take effect.
  5. DatabaseType: mysql
  6.  
  7. # Prefix added to the tables in the database. If you switch from the default tables names (no prefix),
  8. # the plugin will attempt an automatic renaming. Otherwise you have to rename your tables manually.
  9. # Do a full server restart for this to take effect.
  10. TablePrefix: "aach_"
  11.  
  12. # Specify additional options when opening a connection to a MySQL/PostgreSQL database. Start each option with &,
  13. # for instance "&useUnicode=yes&characterEncoding=UTF-8".
  14. AdditionalConnectionOptions: ""
  15.  
  16. # Settings to link with MySQL database (ignored if sqlite or postgresql).
  17. MYSQL:
  18.   Database: 'jdbc:mysql://192.168.20.206:3306/stellysmc'
  19.   User: stellysmc
  20.   Password: XXXXXXX
  21.  
  22. # Settings to link with PostgresSQL database (ignored if sqlite or mysql).
  23. # Refer to https://github.com/PyvesB/AdvancedAchievements/wiki/Installation to set up PostgreSQL.
  24. POSTGRESQL:
  25.   Database: "jdbc:postgresql://localhost:5432/minecraft"
  26.   User: root
  27.   Password: root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement