Menu

[r2069]: / blog / trunk / config.js  Maximize  Restore  History

Download this file

75 lines (72 with data), 1.5 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
{
"blog" : {
"media" : "/media",
"root" : "",
"host" : "localhost:8080",
//"connection_string" : "sqlite3:db=cppcms.db;@pool_size=10",
"connection_string" : "mysql:database=newpress;user=root;password=root;@pool_size=10;@use_prepared=on",
"tex" : {
"enable" : true,
//"latex" : "/usr/bin/latex",
// "dvigif" : "/usr/bin/dvigif",
// "temp_dir" : "/tmp",
// "output_dir" : "/var/www/media/tex"
}
},
"service" : {
"api" : "http",
//"port" : 8080
//"api" : "fastcgi",
//"api" : "scgi",
//"socket" : "/tmp/sock"
},
"http" : {
"script" : "/mb.fcgi",
"rewrite" : [
{ "regex" : "/media(/.*)?", "pattern" : "$0" },
{ "regex" : ".*" , "pattern" : "/mb.fcgi$0" }
]
},
"views" : {
//"default_skin" : "contendend" ,
"default_skin" : "orangesky" ,
"paths" : [ "./" ],
"skins" : [ "contendend" , "orangesky" ],
},
"file_server" : {
"enable" : true,
"document_root" : "../"
},
"session" : {
"expire" : "renew",
"timeout" : 604800, // a week
"location" : "both",
"client" : {
"hmac" : "sha1",
"hmac_key" : "232074faa0fd37de20858bf8cd0a7d10"
},
"server" : {
"storage" : "files"
}
},
"cache" : {
"backend" : "thread_shared",
"limit" : 100,
},
"localization" : {
"messages" : {
"paths" : [ "./locale" ],
"domains" : [ "cppblog" ]
},
"locales" : [
"he_IL.UTF-8",
"en_US.UTF-8",
]
},
"security" : {
"csrf" : {
"enable" : true,
"exposed": true
}
}
}