Change system base URI

How to change host, port, or the path LinkedDataHub service runs on

System base URI

System base URI is the URI on which the LinkedDataHub service is accessible.

A common case is changing the system base URI from the default https://localhost:4443/ to your own.

Lets use https://ec2-54-235-229-141.compute-1.amazonaws.com/linkeddatahub/ as an example. We need to split the URI into components and set them in the .env file using the following parameters:

PROTOCOL=https
HTTP_PORT=80
HTTPS_PORT=443
HOST=ec2-54-235-229-141.compute-1.amazonaws.com
ABS_PATH=/linkeddatahub/

The administration application of each dataspace is served on the admin. subdomain of its end-user host (e.g. admin.ec2-54-235-229-141.compute-1.amazonaws.com). The subdomain must resolve in DNS and be covered by the server's TLS certificate, otherwise the admin application will not be reachable.

Dataspace URIs need to relative to the system base URI in order to be reachable.