Hello,
we are installing DSpace7 and unfortunately have problems, which we are not able to explain or even resolve.
Environment file and apache configuration is attached below.
When running "yarn start:dev", it seems to be working, but when running "yarn start" (environment.prod.ts and environment.dev.ts are the same), we always get "no _links section found..." error.
Could you please help us to resolve the problem? What might be the difference, which can cause this problem?
You can even check - "No _links section found at
https://sulis53.zcu.cz/server/api", but this link is normally accessible.
The testing instance runs here:
https://sulis53.zcu.cz:
Thank you
With regards
Jan
-------------------------------
environment.*.ts:
export const environment = {
ui: {
ssl: false,
host: 'localhost',
port: 4000,
nameSpace: '/'
},
rest: {
ssl: true,
host: '
sulis53.zcu.cz',
port: 443,
nameSpace: '/server'
}
};
apache:
<VirtualHost _default_:443>
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/
sulis53.zcu.cz/cert.pem SSLCertificateKeyFile /etc/letsencrypt/live/
sulis53.zcu.cz/privkey.pem ProxyPass /server
http://localhost:8080/server ProxyPassReverse /server
http://localhost:8080/server RequestHeader set X-Forwarded-Proto https
ProxyPass /
http://localhost:4000/ ProxyPassReverse /
http://localhost:4000/</VirtualHost>