-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.yml
29 lines (29 loc) · 1.25 KB
/
db.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
######################################
# #
# SQLEconomy DB Configuration #
# #
######################################
# MySQL and SQLite only!
#
# Enter your database host IP/URL below.
HostIP: localhost
# Enter your SQL port below. If you are unsure, leave as-is. If your
# SQL is NOT a default install, you MIGHT NEED to change this.
Port: 3306
# What your database is called. This MUST HAVE ALREADY BEEN CREATED.
Name: economy
# What your table name is. DO NOT CREATE IT YOURSELF.
Table: economy
# The username to access your database. This might be root if you're using a localhost.
Username: root
# A password is REQUIRED.
Password: pass
# Will cache the entire database in an ArrayList. It's pretty buggy and won't always work (breaks Towny, for example)
Caching: false
# How often (in ms) the database will be updated (60s default). Keep in mind that this can take a while on larger databases.
CacheRate: 60000
# Many hosted MySQL servers use SSL to verify that the server is trusted. If you have problems connecting, try enabling this.
UseSSL: false
# Trusts the server's SSL certificate even if it doesn't come from a trusted source
# Won't do anything if UseSSL is set to false
TrustSSL: false