forked from jameswsullivan/docker-dspace-handle-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.dct
59 lines (49 loc) · 1.19 KB
/
config.dct
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
{
"hdl_http_config" = {
"bind_address" = "BIND_IP"
"num_threads" = "15"
"bind_port" = "HTTP_PORT"
"log_accesses" = "LOG_ACCESS"
}
"server_type" = "server"
"hdl_udp_config" = {
"bind_address" = "BIND_IP"
"num_threads" = "15"
"bind_port" = "TCP_UDP_PORT"
"log_accesses" = "LOG_ACCESS"
}
"hdl_tcp_config" = {
"bind_address" = "BIND_IP"
"num_threads" = "15"
"bind_port" = "TCP_UDP_PORT"
"log_accesses" = "LOG_ACCESS"
}
"log_save_config" = {
"log_save_directory" = "logs"
"log_save_interval" = "LOG_ROTATION_FREQUENCY_LONG"
}
"no_udp_resolution" = "no"
"interfaces" = (
"hdl_udp"
"hdl_tcp"
"hdl_http"
)
"server_config" = {
"server_admins" = (
"300:0.NA/YOUR_PREFIX"
)
"replication_admins" = (
"300:0.NA/YOUR_PREFIX"
)
"max_session_time" = "86400000"
"this_server_id" = "1"
"max_auth_time" = "60000"
"server_admin_full_access" = "yes"
"case_sensitive" = "no"
"auto_homed_prefixes" = (
"0.NA/YOUR_PREFIX"
)
"storage_type" = "CUSTOM"
"storage_class" = "org.dspace.handle.MultiRemoteDSpaceRepositoryHandlePlugin"
}
}