forked from AKSW/OntoWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ini.dist
103 lines (88 loc) · 2.59 KB
/
config.ini.dist
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
;;;;
;; OntoWiki user config file
;;
;; Settings here will overwrite values from application/config/default.ini
;;
;; @package application
;; @subpackage config
;; @copyright Copyright (c) 2012, {@link http://aksw.org AKSW}
;; @license http://opensource.org/licenses/gpl-license.php GNU General Public License (GPL)
;;
[private]
;;;;
;; Database setup
;; In most cases you only need to change username, password
;; and database name (dbname).
;;;;
;; Backend type:
;; Possible values are zenddb (mysql), virtuoso, arc, comparer and sparql
;;
store.backend = virtuoso
;;;;
;; ZendDB / MySQL backend specific options
;;
store.zenddb.dbname = "ontowiki"
store.zenddb.username = "php"
store.zenddb.password = "php"
store.zenddb.dbtype = mysql
store.zenddb.host = localhost
;;;;
;; Virtuoso backend specific options
;;
store.virtuoso.dsn = VOS
store.virtuoso.username = "dba"
store.virtuoso.password = "dba"
;; affect the main search: searches <= 4 will be exact search (instead of bif:contains)
store.virtuoso.search_max_length_for_bifcontains = "4"
;store.virtuoso.use_persistent_connection = true
;;;;
;; ARC2 backend specific options
;;
store.arc.dbname = "ontowiki_arc2"
store.arc.username = "ow"
store.arc.password = "ow"
store.arc.host = "localhost"
store.arc.store = "ef"
;store.sparql.serviceUrl = "http://dbpedia.org/sparql";
;store.sparql.graphs[] = "http://dbpedia.org"
;;;;
;; Comparer backend specific options
;;
store.comparer.reference = virtuoso
store.comparer.candidate = zenddb
store.comparer.ignoredMethods[] = sparqlQuery
;;;;
;; Frontend language
;;
languages.locale = "en" ; en, de, ru, zh (Chinese)
;;;;
;; Set this identifier to a unique value if you want to run multiple OntoWiki
;; installations on one server
;;
;session.identifier = "abc123"
;;;;
;; Email configuration
;; You should set the host and localname for account recovery mails here
;; appropriate values are necessary to guarantee correct function
;;
mail.hostname = "hostname.tld"
mail.localname.recovery = "ontowiki-account-recovery"
;;;;
;; Proxy configuration
;; You can configure an optional proxy server for connections that OntoWiki internally opens.
;; This is for example useful in situations, where you want to access Linked Data and your OntoWiki sits
;; behind a firewall.
;;
;proxy.host = ""
;proxy.port = 8080
;proxy.username = ""
;proxy.password = ""
;;;;
;; Uncomment this line to turn of the query and object cache (NOT recommended)
;;
;cache.enable = false
;cache.query.enable = false
;;;;
;; uncomment this line if you need more information
;;
;debug = true