1 |
<?php |
2 |
|
3 |
// Backend specific configuration goes in here. |
4 |
|
5 |
// Top level of files being served by the endpoint. |
6 |
// This is the top node of the vospace. |
7 |
if (! defined('FILE_SYSTEM_ROOT')) { |
8 |
define('FILE_SYSTEM_ROOT', '/var/www/html/vospace/backends/file_system/sample_data'); |
9 |
} |
10 |
|
11 |
// root url for returning data |
12 |
// this should be the web server path the to the files being served |
13 |
if(! defined('HTTP_ROOT')) { |
14 |
define('HTTP_ROOT', 'http://localhost/vospace/backends/file_system/sample_data'); |
15 |
} |
16 |
|
17 |
// who to list as the data owner in the owner property |
18 |
if (! defined('DATA_OWNER')) { |
19 |
define('DATA_OWNER', 'R. Wagner, rwagner@physics.ucsd.edu'); |
20 |
} |
21 |
|
22 |
|
23 |
?> |