2024-03-20 21:58:40 +08:00

46 lines
1.0 KiB
Plaintext

# ======================
# Basic configuration
# ======================
[base]
# Web run port. Default:3002
http_port=<%=port%>
# Database driver [mysql/sqlite(Default)]
database_drive=sqlite
# Cache driver [redis/memory(Default)]
cache_drive=memory
# Queue driver [redis/memory(Default)]
queue_drive=memory
# Web Paths
web_path=/www/luci-static/sunpanel
# File cache path (Please start with the current path './')
# Warning: The files that have been uploaded after the modification cannot be accessed
source_path=<%=config_path%>/uploads
# File cache path.
source_temp_path=<%=config_path%>/runtime/temp
# ======================
# Mysql database driver
# ======================
[mysql]
host=127.0.0.1
port=3306
username=root
password=root
db_name=sun_panel
wait_timeout=100
# ======================
# sqlite database driver
# ======================
[sqlite]
file_path=<%=config_path%>/database/database.db
# ======================
# redis database driver
# ======================
[redis]
address=127.0.0.1:6379
password=
prefix=sun_panel:
db=0