blessing-skin-server/.env.example
2016-08-28 13:42:05 +08:00

54 lines
1.4 KiB
Plaintext

###################################
# Blessing Skin Server V3 #
# Configuration #
###################################
# Be sure to disable debug at production environment!
APP_DEBUG = true
APP_ENV = local
# =========================
# = Database =
# =========================
DB_CONNECTION = mysql
DB_HOST = localhost
DB_PORT = 3306
DB_DATABASE = blessing-skin
DB_USERNAME = username
DB_PASSWORD = secret
# =========================
# Table Prefix
#
# Enable if you want to install multiple Blessing Skin Server into one database.
# It should only contains characters, numbers and underscores.
DB_PREFIX = null
# Encrypt Method for Passwords
#
# Available values: MD5, SALTED2MD5, SHA256
PWD_METHOD = SALTED2MD5
# Salt & App Key
# Change them to any random strings to secure your passwords & tokens
SALT = change-it+to*what)you^like
APP_KEY = NkccevHHNRoRBTdGZ4osmKnwdebrjCYw
# Mail Configurations
# Leave MAIL_HOST empty to disable password resetting
MAIL_DRIVER = smtp
MAIL_HOST = null
MAIL_PORT = 465
MAIL_USERNAME = null
MAIL_PASSWORD = null
MAIL_ENCRYPTION = ssl
# Change below lines only if you know what they mean!
CACHE_DRIVER = file
SESSION_DRIVER = file
QUEUE_DRIVER = sync
REDIS_HOST = 127.0.0.1
REDIS_PASSWORD = null
REDIS_PORT = 6379