Files
2026-01-30 15:04:00 +08:00

29 lines
771 B
Lua
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
return {
-- 服务器ID如果REDIS或MYSQL与其它服务公用必须更改此参数要求唯一
server_id = "EDU_1",
path = {
-- 字节码路径
luabytecode = "cache.fw.luabytecode",
-- 开发接口路径
develop_api = "/app/controll/develop",
-- FWUTILS工具箱
fwutils_toolbox = "/app/controll/fwutils",
-- 临时文件路径
temp_path = "/public/temp"
},
token = {
-- 超时时间
expire = 3600 * 24 * 30,
-- 加密算法
algorithm = "aes-256",
-- 加密模式
mode = "cbc",
-- 加密密钥
key = "kangDzFLc3MweDQH",
},
db = {
redis_pool_name = "rdb",
mysql_pool_name = "db",
}
}