Fixed and added environment variables
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,5 @@
|
||||
.env.production
|
||||
.env.development
|
||||
world/
|
||||
world_nether/
|
||||
world_the_end/
|
||||
|
||||
@@ -14,7 +14,7 @@ resource-pack:
|
||||
pack-port: 25002
|
||||
external-host:
|
||||
enabled: true
|
||||
url: http://185.229.220.128:25002/generated.zip
|
||||
url: ${ITEMSADDER_HOST_URL}
|
||||
skip-url-file-type-check___DONT_ASK_HELP_IF_SET_TRUE: false
|
||||
apply-on-join: true
|
||||
kick-player-on-decline: true
|
||||
@@ -95,15 +95,15 @@ data:
|
||||
# - The standard DB engine port is used by default
|
||||
# (MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017)
|
||||
# - Specify as "host:port" if differs
|
||||
address: 185.229.220.128
|
||||
address: ${LUCKPERMS_DB_IP}
|
||||
|
||||
# The name of the database to store LuckPerms data in.
|
||||
# - This must be created already. Don't worry about this setting if you're using MongoDB.
|
||||
database: s3_Luckperms
|
||||
database: ${LUCKPERMS_DB_NAME}
|
||||
|
||||
# Credentials for the database.
|
||||
username: u3_tskIziIM83
|
||||
password: 'ziB.EoVU6k.^IYPiexE5mO+X'
|
||||
username: ${LUCKPERMS_DB_USERNAME}
|
||||
password: '${LUCKPERMS_DB_PASSWORD}'
|
||||
|
||||
# These settings apply to the MySQL connection pool.
|
||||
# - The default values will be suitable for the majority of users.
|
||||
Reference in New Issue
Block a user