Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Using the Apache HTTP Server in front of CollectionSpace's Tomcat Server instance has many advantages, including port hiding and supporting TLS/SSL connections.

...

CollectionSpace should now be accessible using an https URL, like https://cspace.mymuseum.org/cspace/core.

Add In your virtual host configuration file, add configuration to redirect http URLs to https.

Code Block
<VirtualHost *:80>
	# Replace cspace.mymuseum.org with your hostname
    ServerName cspace.mymuseum.org 

    # Replace cspace.mymuseum.org with your hostname
    Redirect permanent / https://cspace.mymuseum.org/
</VirtualHost>

<VirtualHost *:443>
    # ... SSL/TLS site configuration
</VirtualHost>

Restart apache.

...