dspace.server.url = https://testrepository.usj.edu.mo/server
# URL of DSpace frontend (Angular UI). Include port number etc.
# DO NOT end it with '/'.
# This is used by the backend to provide links in emails, RSS feeds, Sitemaps,
# etc.
#dspace.ui.url = http://10.20.46.63:4000
dspace.ui.url = https://testrepository.usj.edu.mo:4000
# Name of the site
dspace.name = University of Saint Joseph
solr.server = http://10.20.46.63:8983/solr
Here is the dspace.cfg
dspace.dir = /dspace
dspace.server.url = https://testrepository.usj.edu.mo/server
dspace.ui.url = https://testrepository.usj.edu.mo:4000
dspace.name = University of Saint Joseph
Here is the environment.production.ts settings
import { AppConfig } from '../config/app-config.interface';
export const environment: Partial<AppConfig> = {
// export const environment = {
production: true,
// Angular Universal settings
universal: {
preboot: true,
async: true,
time: false
},
ui: {
ssl: true,
host: 'testrepository.usj.edu.mo',
port: 4000,
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
nameSpace: '/'
},
rest: {
ssl: true,
host: 'testrepository.usj.edu.mo',
port: 443,
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
nameSpace: '/server'
},
Best Regards,
Zel.