-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
26 lines (22 loc) · 820 Bytes
/
config.php
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
<?php
include_once(dirname(__FILE__).'/arc/ARC2.php'); // path to the file ARC2.php
// SQL database configuration for storing the postings:
$arc_config = array(
/* MySQL database settings */
'db_host' => 'localhost',
'db_user' => 'DBUSER',
'db_pwd' => 'DBPASSWORD',
'db_name' => 'DBNAME',
/* ARC2 store settings */
'store_name' => 'bokhylla',
/* SPARQL endpoint settings */
'endpoint_features' => array(
'select', 'construct', 'ask', 'describe', // allow read
'load', 'insert', 'delete', // allow update
'dump' // allow backup
),
'endpoint_timeout' => 60, /* not implemented in ARC2 preview */
'endpoint_read_key' => '', /* optional */
'endpoint_write_key' => '', /* optional */
'endpoint_max_limit' => 250, /* optional */
);