Forward proxy support
@lumieducation/h5p-server has to make outgoing HTTPS requests to contact the H5P Hub. If your network requires the use of a forward proxy to reach the Internet, you must configure @lumieducation/h5p-server to use it for the HTTPS requests.
There are two ways of enabling the proxy:
Set the
proxy
property in IH5PConfig like this:Set the HTTPS_PROXY environment variable like this:
HTTPS_PROXY=http://10.1.2.3:8080
orHTTPS_PROXY=https://10.1.2.3:8080
(depending on whether your proxy can be accessed with https).
Last updated