Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.02 KB | None | 0 0
  1. # Make a daily backup of your local database (if sqlite or h2).
  2. DatabaseBackup: false
  3.  
  4. # Database type, sqlite, h2, 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". Make sure the key-value pairs themselves are URL encoded.
  14. AdditionalConnectionOptions: ""
  15.  
  16. # Settings to connect to your MySQL/PostgreSQL database (ignored if sqlite).
  17. # A PostgreSQL database address will be similar to jdbc:postgresql://localhost:5432/minecraft
  18. DatabaseAddress: "jdbc:mysql://192.168.20.206:3306/stellysmc"
  19. DatabaseUser: stellysmc
  20. DatabasePassword: XXXXXX
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement