|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Config
|
|
|
|
*/
|
|
|
|
return array(
|
|
|
|
'default_timezone' => 'Asia/Shanghai', //timezone
|
|
|
|
|
|
|
|
//文档站皮肤
|
|
|
|
//'content_directory' => 'content/', //directory of contents in /www/
|
|
|
|
//when it's empty, use layout and views in directory views/
|
|
|
|
//'theme' => 'manual', //name of theme which is enabled
|
|
|
|
|
|
|
|
//导航站皮肤
|
|
|
|
//'content_directory' => 'navs/', //directory of contents in /www/
|
|
|
|
//'theme' => 'webdirectory',
|
|
|
|
|
|
|
|
//图片站皮肤
|
|
|
|
//'content_directory' => 'girls/', //directory of contents in /www/
|
|
|
|
//'theme' => 'googleimage', //name of theme which is enabled
|
|
|
|
|
|
|
|
//视频站皮肤
|
|
|
|
'content_directory' => 'videos/', //directory of contents in /www/
|
|
|
|
'theme' => 'videoblog', //name of theme which is enabled
|
|
|
|
|
|
|
|
'default_layout' => 'main', //default layout
|
|
|
|
'error_layout' => 'error', //exception layout, show error title and content
|
|
|
|
|
|
|
|
//for debug, log directory: ../runtime/logs/
|
|
|
|
'debug' => true,
|
|
|
|
|
|
|
|
//for themes
|
|
|
|
/*
|
|
|
|
//图片皮肤配置
|
|
|
|
'googleimage' => array(
|
|
|
|
'imageHeight' => 350, //图片高度,单位:px
|
|
|
|
'contact' => 'FileSite图片网站订制联系:<a href="https://filesite.io" target="_blank">FileSite.io</a>',
|
|
|
|
),
|
|
|
|
*/
|
|
|
|
|
|
|
|
//视频皮肤配置
|
|
|
|
'videoblog' => array(
|
|
|
|
'imageHeight' => 180, //图片高度,单位:px
|
|
|
|
'contact' => 'FileSite视频网站订制联系:<a href="https://filesite.io" target="_blank">FileSite.io</a>',
|
|
|
|
),
|
|
|
|
|
|
|
|
//后台管理相关配置
|
|
|
|
'admin' => array(
|
|
|
|
'username' => 'filesite',
|
|
|
|
'password' => '88888888',
|
|
|
|
'captcha' => true, //后台登陆是否开启验证码
|
|
|
|
),
|
|
|
|
|
|
|
|
);
|