mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-01-18 13:54:01 +08:00
66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
###################################
|
|
# Blessing Skin Server V3 #
|
|
# Configuration #
|
|
###################################
|
|
|
|
# 啥?你看不懂洋文?请访问:
|
|
# https://github.com/printempw/blessing-skin-server/wiki/Introduction-of-fields-in-.env
|
|
|
|
# Be sure to disable debug at production environment!
|
|
APP_DEBUG = false
|
|
APP_ENV = production
|
|
|
|
# =========================
|
|
# = 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, (SALTED2)SHA256, (SALTED2)SHA512
|
|
#
|
|
PWD_METHOD = SALTED2MD5
|
|
|
|
# Salt
|
|
# Change it to any random string to secure your passwords & tokens.
|
|
#
|
|
SALT = change-it+to*what)you^like
|
|
|
|
# App Key should be setted to any random, **32 character** string,
|
|
# otherwise all the encrypted strings will not be safe.
|
|
#
|
|
# You can run [php artisan key:generate] to generate a new key.
|
|
#
|
|
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
|