2016-07-21 22:01:57 +08:00
|
|
|
###################################
|
2019-02-18 17:16:13 +08:00
|
|
|
# Blessing Skin Server v4 #
|
2016-07-21 22:01:57 +08:00
|
|
|
# Configuration #
|
|
|
|
###################################
|
|
|
|
|
2018-02-09 17:55:22 +08:00
|
|
|
# 本文件中各个配置项的详细说明
|
2019-05-20 22:40:27 +08:00
|
|
|
# 请访问 http://t.cn/E9G4DTY 查看中文教程
|
2016-10-16 21:58:25 +08:00
|
|
|
|
2016-08-28 13:42:05 +08:00
|
|
|
# Be sure to disable debug at production environment!
|
2018-07-20 15:14:10 +08:00
|
|
|
APP_DEBUG = false
|
|
|
|
APP_ENV = production
|
2019-07-23 17:34:04 +08:00
|
|
|
WEBPACK_ENV = production
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2018-07-20 15:14:10 +08:00
|
|
|
# Database Configuration
|
2019-03-31 11:07:42 +08:00
|
|
|
DB_CONNECTION = dummy
|
2018-07-20 15:14:10 +08:00
|
|
|
DB_HOST = localhost
|
|
|
|
DB_PORT = 3306
|
2019-03-18 17:57:20 +08:00
|
|
|
DB_DATABASE = blessingskin
|
2018-07-20 15:14:10 +08:00
|
|
|
DB_USERNAME = username
|
|
|
|
DB_PASSWORD = secret
|
2016-08-06 19:11:58 +08:00
|
|
|
# =========================
|
|
|
|
|
2016-08-28 13:42:05 +08:00
|
|
|
# Table Prefix
|
2016-08-06 19:11:58 +08:00
|
|
|
#
|
2018-07-20 15:14:10 +08:00
|
|
|
# Change if you want to install multiple BS instances into one database.
|
|
|
|
# The prefix may only contain letters, numbers, and underscores.
|
2017-01-02 13:27:53 +08:00
|
|
|
#
|
|
|
|
DB_PREFIX = null
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2018-07-20 15:14:10 +08:00
|
|
|
# Hash Algorithm for Passwords
|
2016-08-06 19:11:58 +08:00
|
|
|
#
|
2017-06-28 18:38:22 +08:00
|
|
|
# Available values:
|
2019-04-08 21:53:00 +08:00
|
|
|
# - BCRYPT, PHP_PASSWORD_HASH
|
2018-07-20 15:14:10 +08:00
|
|
|
# - MD5, SALTED2MD5
|
|
|
|
# - SHA256, SALTED2SHA256
|
|
|
|
# - SHA512, SALTED2SHA512
|
2017-06-28 18:38:22 +08:00
|
|
|
#
|
2019-04-08 21:53:00 +08:00
|
|
|
# New sites are *highly* recommended to use BCRYPT.
|
2017-01-02 13:27:53 +08:00
|
|
|
#
|
2019-04-08 21:53:00 +08:00
|
|
|
PWD_METHOD = BCRYPT
|
2016-07-24 12:50:19 +08:00
|
|
|
|
2016-09-28 18:08:16 +08:00
|
|
|
# Salt
|
|
|
|
# Change it to any random string to secure your passwords & tokens.
|
2017-01-02 13:27:53 +08:00
|
|
|
#
|
2017-01-08 11:28:55 +08:00
|
|
|
# You can run [php artisan salt:random] to generate a new salt.
|
|
|
|
#
|
|
|
|
SALT = 2c5ca184f017a9a1ffbd198ef69b0c0e
|
2016-09-28 18:08:16 +08:00
|
|
|
|
2017-06-28 18:38:22 +08:00
|
|
|
# App Key should be setted to any random, *32 character* string,
|
2016-09-28 18:08:16 +08:00
|
|
|
# otherwise all the encrypted strings will not be safe.
|
2017-01-02 13:27:53 +08:00
|
|
|
#
|
|
|
|
# You can run [php artisan key:generate] to generate a new key.
|
|
|
|
#
|
2019-08-09 11:20:36 +08:00
|
|
|
APP_KEY=base64:gkb/zouNF6UOSfnr/o+izVMS57WQS3+62YqZBuDyBhU=
|
2016-07-21 22:01:57 +08:00
|
|
|
|
2018-07-20 15:14:10 +08:00
|
|
|
# Mail Configuration
|
|
|
|
#
|
|
|
|
# Leave MAIL_DRIVER empty to disable features involving sending emails.
|
|
|
|
#
|
|
|
|
MAIL_DRIVER = smtp
|
|
|
|
MAIL_HOST = null
|
|
|
|
MAIL_PORT = 465
|
|
|
|
MAIL_USERNAME = null
|
|
|
|
MAIL_PASSWORD = null
|
2019-04-25 14:13:21 +08:00
|
|
|
MAIL_ENCRYPTION = null
|
2016-08-28 13:42:05 +08:00
|
|
|
|
|
|
|
# Change below lines only if you know what they mean!
|
2018-07-20 15:14:10 +08:00
|
|
|
CACHE_DRIVER = file
|
|
|
|
SESSION_DRIVER = file
|
2019-07-05 23:25:15 +08:00
|
|
|
QUEUE_DRIVER = sync
|
2016-08-28 13:42:05 +08:00
|
|
|
|
2018-07-20 15:14:10 +08:00
|
|
|
REDIS_HOST = 127.0.0.1
|
|
|
|
REDIS_PASSWORD = null
|
|
|
|
REDIS_PORT = 6379
|
2018-06-28 12:07:20 +08:00
|
|
|
|
2018-07-20 15:14:10 +08:00
|
|
|
PLUGINS_DIR = null
|
|
|
|
PLUGINS_URL = null
|