Commits
nibou230 authored 459da211bed
6 6 | ui |
7 7 | ssl false |
8 8 | host localhost |
9 9 | port 4000 |
10 10 | # NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript |
11 11 | nameSpace / |
12 12 | # The rateLimiter settings limit each IP to a 'max' of 500 requests per 'windowMs' (1 minute). |
13 13 | rateLimiter |
14 14 | windowMs 60000 # 1 minute |
15 15 | max 500 # limit each IP to 500 requests per windowMs |
16 + | # Show the file access status in items lists |
17 + | showAccessStatuses false |
16 18 | |
17 19 | # The REST API server settings |
18 20 | # NOTE: these must be 'synced' with the 'dspace.server.url' setting in your backend's local.cfg. |
19 21 | rest |
20 22 | ssl true |
21 23 | host api7.dspace.org |
22 24 | port 443 |
23 25 | # NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript |
24 26 | nameSpace /server |
25 27 | |