DS-1823 move dspace.url to build.properties

dspace.url is now independent from baseUrl
This commit is contained in:
Bram Luyten
2013-12-05 17:10:54 +01:00
parent a282bf103a
commit bd7be6b94e
2 changed files with 8 additions and 1 deletions

View File

@@ -30,6 +30,13 @@ dspace.hostname = localhost
# DSpace base host URL. Include port number etc. # DSpace base host URL. Include port number etc.
dspace.baseUrl = http://localhost:8080 dspace.baseUrl = http://localhost:8080
# Full link your end users will use to access DSpace. Common usage is
# either /xmlui or /jspui if you have deployed either the xmlui or jspui
# webapp under the corresponding context path in your servlet container.
# Alternatively, you can use a url redirect or deploy the web application
# under the servlet container root.
dspace.url = http://localhost:8080/xmlui
# Name of the site # Name of the site
dspace.name = DSpace at My University dspace.name = DSpace at My University

View File

@@ -36,7 +36,7 @@ dspace.baseUrl = ${dspace.baseUrl}
# Change to xmlui if you wish to use the xmlui as the default, or remove # Change to xmlui if you wish to use the xmlui as the default, or remove
# "/jspui" and set webapp of your choice as the "ROOT" webapp in # "/jspui" and set webapp of your choice as the "ROOT" webapp in
# the servlet engine. # the servlet engine.
dspace.url = ${dspace.baseUrl}/xmlui dspace.url = ${dspace.url}
# Optional: DSpace URL for mobile access # Optional: DSpace URL for mobile access
# This # This