Skip to content
Snippets Groups Projects
Commit 13070db4 authored by Alexander König's avatar Alexander König
Browse files

fixed some small errors

parent 07a45035
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ RUN make aai.min.js
COPY commul-customization/certs/lindat-dev.key /etc/ssl/private/
COPY commul-customization/certs/lindat-dev_eurac_edu.pem /etc/ssl/certs/
# if deployed on lindat instead of lindat-dev comment the two lines above and uncomment the following 6 lines
# if deployed on lindat instead of lindat-dev comment the two lines above and uncomment the following 4 lines
## copy certificate for lindat
# COPY commul-customization/certs/lindat_eurac_edu.key /etc/ssl/private/
......
......@@ -53,7 +53,7 @@
(Set discoveryProtocol to "WAYF" for legacy Shibboleth WAYF support.)
You can also override entityID on /Login query string, or in RequestMap/htaccess.
-->
<SSO entityID="https://idp.eurac.edu/idp/shibboleth"
<SSO
discoveryProtocol="SAMLDS" discoveryURL="https://discovery.clarin.eu/discojuice">
SAML2 SAML1
</SSO>
......@@ -128,7 +128,7 @@
uri="https://idp.eurac.edu/idp/shibboleth"
backingFilePath="/opt/shibboleth-sp-fastcgi/var/cache/shibboleth/eurac-idp.xml"
reloadInterval="7200" legacyOrgNames="true">
</MetadataProvider>
</MetadataProvider>-->
<!-- Example of locally maintained metadata. -->
<!--
......
#!/bin/bash
#Put start commands here
### Postgres ###
echo "Starting postgres"
/etc/init.d/postgresql start
# echo "Starting postgres"
# /etc/init.d/postgresql start
### Tomcat ###
echo "Starting tomcat"
/etc/init.d/tomcat8 start
......
......@@ -4,12 +4,9 @@
echo "Stopping tomcat"
/etc/init.d/tomcat8 stop
# apparently tomcat needs a long time to stop and this script doesn't wait
sleep 10
### Postgres ###
echo "Stopping postgres"
/etc/init.d/postgresql stop
# echo "Stopping postgres"
# /etc/init.d/postgresql stop
### Handle server ###
HANDLE_SERVER=/etc/init.d/handle-server
......
......@@ -10,3 +10,5 @@ perl -pi -e 's/lindat-dev/lindat/g' commul-customization/default-ssl
perl -pi -e 's/lindat-dev/lindat/g' commul-customization/aai.js
perl -pi -e 's/lindat-dev/lindat/g' commul-customization/aai_config.js
perl -pi -e 's/lindat-dev/lindat/g' commul-customization/lindat.eurac.edu.template.metadata.xml
echo "Modified all files to point to lindat.eurac.edu instead of lindat-dev.eurac.edu. Do not forget to also edit the Dockerfile."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment