123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- [base]
- ;开发环境配置
- [setting]
- name = 文档转换系统
- site = http://doc.dever.cc/
- copyright = 2018 dever.cc v1.0.0
- ;打印路由表
- route = True
- [db]
- rdb = mysql
- [mysql]
- host = 0.0.0.0
- port = 3309
- username = root
- password = 123456
- dbname = office_convert
- prefix = oc
- charset = utf8
- ;允许自动建表
- create = True
- [redis]
- host = 0.0.0.0
- password = dm_redis_123
- port = 6379
- name = office_file
- prefix = convert_
- ;定义一些tornado的配置,可为空
- [tornado]
- ;后台配置
- [admin]
- port = 8087
- debug = True
- ;请求的buffersize
- max_buffer_size = 210763776
- ;子进程
- process = 0
- ;定义后台父级菜单
- menu_parent = 站点设置:
- ;定义后台子级菜单
- menu_child = 站点管理:/site/site,转换文件列表:/site/convert
- ;cookie
- cookie_secret = 61oETzKXQAGaYekL5gEmGeJJFuYh7EQnp2XdTP1o/Vo=
- login_url = /user/login
- ;是否使用安全cookie
- xsrf_cookies = True
- ;前台配置
- [front]
- port = 8089
- debug = True
- ;请求的buffersize
- max_buffer_size = 210763776
- ;子进程
- process = 0
- ;支持手机版
- mobile = True
|