Dear Sir,
We have installed Dspace-6.3 on Windows 10. It is perfectly working on IIS (port 80). We want to make the jspui application in root folder.
At present it is accessible through
Now, we want to put the repository in such way that it should be accessible through URL:
http://nclswd2g9jhj2/ without the JSPUI at the end
I have created a symbolic link to ROOT in (C:\dspace\webapps)
I have done through many blog and help but didn't got a solution.
Can you please help in this matter?
This is what I have set up in server.xml
<Host name="localhost" appBase="C:\dspace\webapps\"
unpackWARs="true" autoDeploy="true">
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log" suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
<!-- <Context path="/jspui" docBase="C:\dspace\webapps\jspui" reloadable="true" cachingAllowed="false" debug="0" allowLinking="true" />
<Context path="/xmlui" docBase="C:\dspace\webapps\xmlui" reloadable="true" cachingAllowed="false" debug="0" allowLinking="true" />
<Context path="/oai" docBase="C:\dspace\webapps\oai" reloadable="true" cachingAllowed="false" debug="0" allowLinking="true" />
<Context path="/" docBase="C:\dspace\webapps\" reloadable="true" cachingAllowed="false" debug="0" allowLinking="true" /> -->
</Host>