| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | 
							- [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
 
- 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				= 8088
 
- debug				= True
 
- ;请求的buffersize
 
- max_buffer_size		= 210763776
 
- ;子进程
 
- process				= 0
 
- ;支持手机版
 
- mobile				= True
 
 
  |