HTTPS configuration for Linux via Docker
Overview
Configuring HTTPS for Linux via Docker installations involves the use of an NGINX web server in reverse proxy mode placed in front of the various CAST Imaging components:
- NGINX can be installed on a dedicated machine or on an existing machine where CAST Imaging Docker containers are already running.
- All requests for CAST Imaging v3 services will be handled by NGINX and forwarded to the relevant service.
- The public/private key pair is installed on NGINX.
- Some minor changes are required to CAST Imaging Docker containers, detailed in the instructions below.
Step 1 - generate public/private keys
A public (e.g.: public_key.crt
) and private (e.g. private_key.key
) key pair in PEM
format is required by NGINX and CAST highly recommends that you avoid using self-signed certificates - instead you should use certificates signed by a CA (Certificate Authority).
To generate a private key and a CSR (certificate signing request) which can be sent to a Certificate Authority, run the following command on the machine where NGINX is installed, with elevated permissions (see also https://docs.openssl.org/1.1.1/man1/req/ ):
openssl req -new -newkey rsa:2048 -nodes -keyout private_key.key -out csr.csr
Where:
req
- indicates that we want a CSR-new
- generates a brand new CSR-newkey
- generates a new private keyrsa:2048
- generates a 2048-bit RSA private key-nodes
- no DES, meaning do not encrypt the private key in a PKCS#12 file-keyout
- defines the name of the private key file-out
- defines the name of the CSR file
You can of course, change any of the parameters to match your own requirements, these are simply suggestions. Ensure that when prompted you fill in the correct FQDN (fully qualified domain name) matching your host machine: this will be used by end users to access CAST Imaging. Retain the private_key.key
file and use the contents of the csr.csr
file to generate the public_key.crt
at your chosen Certificate Authority.
Step 2 - Install NGINX
Install NGINX: this is beyond the scope of this document, instead please consult the following third-party documentation: https://nginx.org/en/docs/install.html .
Step 3 - Configure NGINX
When NGINX is installed, you now need to configure it. There are two parts to this process:
- configure the HTTPS element
- configure the reverse proxy
Step 3a - Configure HTTPS
Out of the box, NGINX contains one “vHost” called “default”, serving various default files on port 80. CAST recommends creating a new vHost and using this specifically for the HTTPS requirements. To add a new vHost, create a new empty file in the following location on disk, in our example the file is named with the machine’s FQDN imaging.corp.domain.com:
nano /etc/nginx/sites-available/imaging.corp.domain.com
Paste in the following server
block configuration to define the HTTPS protocol and then save the file:
server {
listen 443 ssl;
server_name imaging.corp.domain.com;
server_tokens off;
ssl_certificate path/to/public_key.crt;
ssl_certificate_key path/to/private_key.key;
ssl_protocols TLSv1.2;
ssl_ciphers !EDH:!RC4:!ADH:!DSS:HIGH:+AES128:+AES256-SHA256:+AES128-
SHA256:+SHA:!3DES:!NULL:!aNULL:!eNULL;
ssl_prefer_server_ciphers on;
ssl_ecdh_curve secp384r1;
location / {
}
}
Where:
listen 443 ssl
- indicates that we want NGINX to listen on all ipv4 addresses on the server, on port 443server_name
- indicates the FQDN on which NGINX will listen for incoming connectionsserver_tokens off
- disables emitting NGINX version numbers on error pages and in the “Server
” response header field.ssl_certificate
/ssl_certificate_key
- paths to thepublic_key.crt
andprivate_key.ke
y files on the local diskssl_protocols
- specifies the protocol to use, a minimum ofTLSv1.2
is recommendedssl_ciphers
- sets the SSL ciphers to use. This is only a recommendation and you should choose your own ciphersssl_prefer_server_ciphers
- specifies that server ciphers should be preferred over client ciphersssl_ecdh_curve
- specifies a curve for ECDHE ciphers (if you use them)
Step 3b - Configure reverse proxy
The next step involves configuring NGINX to function in reverse proxy mode, i.e. to accept incoming connections and forward them to the relevant CAST Imaging services.
Edit the vHost configuration file (the same one you created in the previous step), add the following parameters to the location / {}
block and then save the file:
location / {
proxy_http_version 1.1;
proxy_buffering off;
proxy_cache off;
proxy_pass http://imagingv3_VM.corp.castsoftware.com:8090/;
proxy_redirect off;
proxy_set_header Connection '';
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
chunked_transfer_encoding off;
client_max_body_size 100M;
}
Where:
proxy_http_version
- sets the HTTP protocol version for proxying, use 1.1proxy_buffering
- enables or disables buffering of responses from the proxied server - set tooff
proxy_pass
- sets the protocol and address/port of the proxied server - set this to the machine on which the CAST Imaging v3imaging-services
component is installed, using port8090
(unless you have customized it). The address can be specified as a domain name or IP addressproxy_cache
- defines a shared memory zone used for caching. - set tooff
proxy_set_header
- allows redefining or appending fields to the request header passed to the proxied server - see https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_set_header for more informationchunked_transfer_encoding
- allows disabling chunked transfer encoding in HTTP/1.1 - set tooff
client_max_body_size
- sets the maximum allowed size of the client request body. This limit determines the maximum file size that will be accepted: if your users upload ZIP archive files during the application onboarding, set this to an appropriate limit to accept the file
Additionally, you will also need to add various proxy_set_header
parameters to the server {}
block created previously:
server {
...
...
...
proxy_set_header X-Forwarded-For $proxy_protocol_addr; #to forward the original client's IP address
proxy_set_header X-Forwarded-Proto $scheme; #to forward the original protocol (HTTP or HTTPS)
proxy_set_header Host $host; #to forward the original host requested by the client
}
imaging-services
component, e.g. appropriate firewall rules/VLAN configuration is in place.
Step 4 - Update imaging-services SSO (Keycloak) component
To ensure that the imaging-services
SSO (Keycloak) component functions correctly behind the NGINX reverse proxy, you need to add some entries to the following files:
/cast_imaging_services/docker-compose.yml
/cast_imaging_services/.env
These files will be located on disk in the folder created when you unzipped the CAST Imaging v3 Docker installation media (see Installation on Linux via Docker).
docker-compose.yml
First add the following lines to the sso-service:environment
block in the file and then save it:
KC_HOSTNAME_ADMIN_URL: ${KC_HOSTNAME}
KEYCLOAK_FRONTEND_URL: ${KC_HOSTNAME}
KC_HOSTNAME_STRICT_HTTPS: 'true'
PROXY_ADDRESS_FORWARDING: 'true'
KC_PROXY: 'edge'
For example:
Next, add the following line to the auth-service:environment
block in the same file and then save it:
NGINX_HOST=${NGINX_HOST}
For example:
.env
Add the following lines to the end of the file and then save it (where <my_fqdn>
is the FQDN defined for the parameter server_name
in the server
block of the NGINX vHost you created earlier):
KC_HOSTNAME=https://<my_fqdn>/auth/
NGINX_HOST=https://<my_fqdn>
For example:
Step 5 - Restart imaging-services containers
To ensure the changes you have made are taken into account, you should restart the imaging-services
containers. To do so, issue the following command from the /cast_imaging_services
folder located on disk in the folder created when you unzipped the CAST Imaging v3 Docker installation media:
docker-compose up -d
This command will rebuild only the images/containers with the changes you have implemented.
Step 6 - Check access and HTTPS
Check that you can access CAST Imaging over HTTPS from the FQDN you declared in the NGINX vHost, e.g. https://imaging.corp.domain.com
.