1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- [base]
- ;开发环境配置
- [setting]
- name = DM运维管理系统
- site = http://www.dever.cc/
- copyright = 2018 dever.cc v1.0.0
- ;打印路由表
- route = True
- [db]
- rdb = mysql
- [mysql]
- host = daemon-mysql
- port = 3309
- username = root
- password = 123456
- dbname = dm
- prefix = dm
- charset = utf8
- ;允许自动建表
- create = True
- ;定义一些tornado的配置,可为空
- [tornado]
- ;后台配置
- [admin]
- port = 8087
- debug = True
- ;请求的buffersize
- max_buffer_size = 210763776
- ;子进程
- process = 0
- ;定义后台父级菜单
- menu_parent = 资源管理:,代码管理:
- ;定义后台子级菜单
- menu_child = 域管理:/server/domain,节点管理:/server/node,镜像分类管理:/server/category,镜像管理:/server/images,容器分组管理:/server/group,容器管理:/server/container;项目管理:/deploy/project,提交代码:/deploy/submit
- ;;,进程管理:
- ;进程管理:/process/process;
- ;cookie
- cookie_secret = 61oETzKXQAGaYekL5gEmGeJJFuYh7EQnp2XdTP1o/Vo=
- login_url = /user/login
- ;是否使用安全cookie
- xsrf_cookies = True
- ;上线的路径
- git_path = /data/dm/container/share/lib/web/
- online_path = /data/dm/container/web/
- ;前台配置
- [front]
- port = 8088
- debug = True
- ;请求的buffersize
- max_buffer_size = 210763776
- ;子进程
- process = 0
- ;支持手机版
- mobile = True
|