-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
86 lines (78 loc) · 2.83 KB
/
Copy pathconfig.php
File metadata and controls
86 lines (78 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/*-----------------------------------------------------------------------------
* environment
*----------------------------------------------------------------------------*/
/* If you installed webroot directory in subdirectory,
* define the path from Document Root to webroot directory. */
// $config['webroot'] = '/path/to/webroot';
// $config['webroot'] = '/webroot';
/*-----------------------------------------------------------------------------
* site
*----------------------------------------------------------------------------*/
$config['site_title'] = 'Choco - シンプルで拡張性の高い軽量CMS';
/*-----------------------------------------------------------------------------
* theme
*----------------------------------------------------------------------------*/
$config['theme'] = 'default';
// $config['theme'] = 'cerulean';
// $config['theme'] = 'cosmo';
// $config['theme'] = 'cyborg';
// $config['theme'] = 'darkly';
// $config['theme'] = 'flatly';
// $config['theme'] = 'journal';
// $config['theme'] = 'lumen';
// $config['theme'] = 'paper';
// $config['theme'] = 'readable';
// $config['theme'] = 'sandstone';
// $config['theme'] = 'simplex';
// $config['theme'] = 'slate';
// $config['theme'] = 'spacelab';
// $config['theme'] = 'superhero';
// $config['theme'] = 'united';
// $config['theme'] = 'yeti';
/*-----------------------------------------------------------------------------
* blog
*----------------------------------------------------------------------------*/
$config['blog'] = array(
'title' => 'Blog',
'subtitle' => 'Blogのサブタイトル',
'limit_per_page' => 5,
);
/*-----------------------------------------------------------------------------
* mail
*----------------------------------------------------------------------------*/
$config['mail'] = array(
'host' => 'smtp.gmail.com',
'port' => 587,
'encryption' => 'tls',
'user' => '..SMTP_USER..@gmail.com',
'password' => 'PASSWORD',
'from' => '..FROM..@gmail.com',
'to' => '..TO..@gmail.com',
);
/*-----------------------------------------------------------------------------
* admin
*----------------------------------------------------------------------------*/
$config['admin'] = array(
'users' => array (
// 'user_id' => 'passowrd',
'user1' => 'pass1',
'user2' => 'pass2',
),
'limit_per_page_json' => 10,
'limit_per_page_image' => 12,
'upload_max_file_size' => 800000,
);
/*-----------------------------------------------------------------------------
* Slim Framework
*----------------------------------------------------------------------------*/
$config['slim'] = array(
'debug' => true,
'log.enabled' => true,
);
/*-----------------------------------------------------------------------------
* Twig Template
*----------------------------------------------------------------------------*/
$config['twig'] = array(
'debug' => true,
);