I've been having difficulty getting my instance of 7.6 to run on SSL.
One of the things I've noticed is that the config.json file has the REST
interface running SSL on port 80:
{
"production": true,
"debug": true,
"ui": {
"ssl": false,
"host": "localhost",
"port": 4000,
"nameSpace": "/xmlui",
"rateLimiter": {
"windowMs": 60000,
"max": 500
},
"useProxies": true,
"baseUrl": "http://localhost:4000/xmlui"
},
"rest": {
"ssl": true,
"host": "10.101.150.11",
"port": 80,
"nameSpace": "/server",
"baseUrl": "https://10.101.150.11/server"
},
[--SNIP--]
when the config.*.yml clearly has:
ui:
ssl: false
host: localhost
port: 4000
nameSpace: /xmlui
# baseUrl": http://localhost:4000
rest:
ssl: true
host: 10.101.150.11
port: 443
nameSpace: /server
#baseUrl: https://10.101.150.11/server
Does this make a difference and why is the compiled config.json file wrong?
--
All messages to this mailing list should adhere to the Code of Conduct:
https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
---
You received this message because you are subscribed to the Google Groups
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/dspace-tech/82563938-137c-4a5f-9260-cac93e72ca6bn%40googlegroups.com.