You are viewing the documentation for Blueriq 18. Documentation for other versions is available in our documentation directory.
Encore expects a runtime instance to be available behind the /runtime
URL. This can be routed to any runtime instance of the same Blueriq major version through a reverse proxy. When using the Blueriq installer this works out of the box using nginx as reverse proxy, but this can be achieved in any environment.
Configuration
The exact configuration depends on the reverse proxy that is being used. This section aims to show what is generally needed, which can likely be translated to different proxy configurations.
Change the RUNTIME_URL:RUNTIME_PORT
segment as needed. Restart nginx for the changes to take effect.
http { upstream revProxyRuntime { # URL and port where the Blueriq Runtime Server is deployed # NOTE: This should not include the protocol "http://", only the hostname:port should be configured here. server RUNTIME_URL:RUNTIME_PORT; } server { location /runtime/ { # Context path where the Blueriq Runtime is running under, this should only be enable if the context path is different than /Runtime # rewrite /Runtime/(.*) /CONTEXT_PATH/$1; chunked_transfer_encoding off; proxy_buffering off; proxy_cache off; proxy_pass http://revProxyRuntime; } } }
Overview
Content Tools