-
Notifications
You must be signed in to change notification settings - Fork 3
/
institution.cfg.php.sample
30 lines (22 loc) · 1.33 KB
/
institution.cfg.php.sample
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
<?php
# ---------------------------
# configuration settings file
# ---------------------------
# Set these configuration settings!
define('APP_PREFIX', 'http://'); // choose either: 'http://' OR 'https://'
define('APP_DOMAIN', 'optional_subdomain.institution.edu'); // exclude prefix (http:// or https://); exclude trailing slash
define('APP_PORT', ''); // optional: port value (i.e. ":8888")
define('APP_FOLDER', ''); // optional: subdirectory path (i.e. "/islandora"); exclude trailing slash
define('FEDORA_PREFIX', 'http://'); // choose either: 'http://' OR 'https://'
define('FEDORA_DOMAIN', 'optional_subdomain.institution.edu'); // exclude prefix (http:// or https://); exclude trailing slash
define('FEDORA_PORT', ':8080'); // optional: port value (i.e. ":8888")
define('FEDORA_FOLDER', ''); // optional: subdirectory path (i.e. "/islandora"); exclude trailing slash
# Test User credentials
define('APP_TEST_USER', 'someone');
define('APP_TEST_PASS', 'somepassword');
#############################################################
# No need to change anything below this line
#############################################################
# Generated Full Paths
define('FULL_APP_URL', APP_PREFIX . APP_DOMAIN . APP_PORT . APP_FOLDER);
define('FULL_FEDORA_URL', FEDORA_PREFIX . FEDORA_DOMAIN . FEDORA_PORT . FEDORA_FOLDER);