43 lines
954 B
INI
43 lines
954 B
INI
# ======================
|
|
# Basic configuration
|
|
# ======================
|
|
[base]
|
|
# Web run port. Default:3002
|
|
http_port=3002
|
|
# Database driver [mysql/sqlite(Default)]
|
|
database_drive=mysql
|
|
# Cache driver [redis/memory(Default)]
|
|
cache_drive=redis
|
|
# Queue driver [redis/memory(Default)]
|
|
queue_drive=redis
|
|
# File cache path (Please start with the current path './')
|
|
# Warning: The files that have been uploaded after the modification cannot be accessed
|
|
source_path=./uploads
|
|
# File cache path.
|
|
source_temp_path=./runtime/temp
|
|
|
|
# ======================
|
|
# Mysql database driver
|
|
# ======================
|
|
[mysql]
|
|
host=192.168.2.222
|
|
port=3306
|
|
username=root
|
|
password=12300114
|
|
db_name=navpanel
|
|
wait_timeout=100
|
|
|
|
# ======================
|
|
# sqlite database driver
|
|
# ======================
|
|
[sqlite]
|
|
file_path=./database/database.db
|
|
|
|
# ======================
|
|
# redis database driver
|
|
# ======================
|
|
[redis]
|
|
address=127.0.0.1:6379
|
|
password=
|
|
prefix=sun_panel:
|
|
db=0 |