1 |
richard.p.wagner |
730 |
<?php |
2 |
|
|
|
3 |
richard.p.wagner |
731 |
// 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 |
richard.p.wagner |
730 |
if (! defined('FILE_SYSTEM_ROOT')) { |
8 |
|
|
define('FILE_SYSTEM_ROOT', '/var/www/vos/vospace/backends/file_system/sample_data/'); |
9 |
|
|
} |
10 |
|
|
|
11 |
richard.p.wagner |
734 |
// 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://cadac-dev.ucsd.edu/vos/vospace/backends/file_system/sample_data/'); |
15 |
|
|
} |
16 |
|
|
|
17 |
|
|
// who to list as the data owner in the owner property |
18 |
richard.p.wagner |
731 |
if (! defined('DATA_OWNER')) { |
19 |
|
|
define('DATA_OWNER', 'R. Wagner, rwagner@physics.ucsd.edu'); |
20 |
|
|
} |
21 |
|
|
|
22 |
richard.p.wagner |
734 |
|
23 |
richard.p.wagner |
731 |
?> |