Configuring SSL/TLS Termination at HAProxy
Page last updated:
Warning: Pivotal Application Service (PAS) v2.8 is no longer supported because it has reached the End of General Support (EOGS) phase as defined by the Support Lifecycle Policy. To stay up to date with the latest software and security updates, upgrade to a supported version.
This topic describes how to configure SSL/TLS termination at HAProxy in Pivotal Application Service (PAS) and Pivotal Isolation Segment.
Overview
Both PAS and Pivotal Isolation Segment include an HAProxy instance.
HAProxy is appropriate to use in a deployment when features are needed that are offered by HAProxy but are not offered by the Gorouters or IaaS-provided load balancers, such as with Azure load balancers. These include filtering of protected domains from trusted networks.
While HAProxy instances provide load balancing for the Gorouters, HAProxy is not itself highly available. For production environments, use a highly-available load balancer to scale HAProxy horizontally. The load balancer does not need to terminate TLS or even operate at Layer 7 (HTTP), as it can provide Layer 4 load balancing of TCP connections. Use of HAProxy does not remove the need for Gorouters. The Gorouter must always be deployed for HTTP apps, and the TCP router for non-HTTP apps.
You can generate a self-signed certificate for HAProxy if you do not want to obtain a signed certificate from a certificate authority (CA).
Terminate SSL/TLS at HAProxy
To configure SSL termination on HAProxy in PAS:
Navigate to the Ops Manager Installation Dashboard.
Click the PAS tile.
Select Networking.
Configure these fields based on the IaaS of your PAS deployment:
If your PAS deployment is on: Then configure: See also: OpenStack or vSphere Decide whether you want your HAProxy to be highly available. - If you need highly available HAProxy:
- Choose an IP address for each HAProxy instance on the subnet where you deployed PAS.
- In the HAProxy IPs field of the Networking pane, enter the IP addresses you have selected for your HAProxy instances.
- Configure your load balancer, such as F5 or NSX, to forward domain names to the HAProxy IP addresses.
- If you do not require high availability, such as if you are setting up a development environment:
- Skip setting up the load balancer.
- Choose one IP address for the single HAProxy instance.
- Configure DNS to point at the IP address. For more information, see How to Set Up DNS for HAProxy.
For more information, see Configure Networking in Configuring PAS. AWS, GCP or Azure - Leave the HAProxy IP address blank.
- In the Resource Config pane, locate the HAProxy job.
- In the Load Balancer column for the HAProxy job, specify the appropriate IaaS load balancer resource.
For more information, see Configure Networking in Configuring PAS. - If you need highly available HAProxy:
In the Certificates and private keys for the Gorouter and HAProxy field, click the Add button to define at least one certificate keypair for the Gorouter and HAProxy. For each certificate keypair that you add, assign a name, enter the PEM-encoded certificate chain and PEM-encoded private key. You can either upload your own certificate or generate an RSA certificate in PAS. For options and instructions on creating a certificate for your wildcard domains, see Creating a Wildcard Certificate for PAS Deployments in Providing a Certificate for Your TLS Termination Point.
In the Minimum version of TLS supported by the Gorouter and HAProxy, select the minimum version of TLS to use in HAProxy communications. HAProxy use TLS v1.2 by default. If you need to accommodate clients that use an older version of TLS, select a lower minimum version. For a list of TLS ciphers supported by the HAProxy, see TLS Cipher Suites in TLS Connections in Pivotal Platform.
Under HAProxy forwards all requests to the Gorouter over TLS, leave Enable selected and provide the back end certificate authority.
To use a specific set of TLS ciphers for HAProxy, configure TLS cipher suites for HAProxy. Enter an ordered, colon-separated list of TLS cipher suites in the OpenSSL format. For example, if you have selected support for an earlier version of TLS, enter cipher suites supported by this version. For a list of TLS ciphers supported by the HAProxy, see TLS Cipher Suites in TLS Connections in Pivotal Platform.
If you expect requests larger than the default maximum of 16.384 KB, enter a new value in bytes for HAProxy request maximum buffer size. You may need to do this, for example, to support apps that embed a large cookie or query string values in headers.
To force browsers to use HTTPS when making requests to HAProxy, select Enable in the HAProxy support for HSTS field and complete these optional configuration steps:
- Maximum age in seconds for the HSTS request. HAProxy forces HTTPS requests from browsers for the duration of this setting. The maximum age is one year, or 31536000 seconds.
- Enable the Include subdomains checkbox to force browsers to use HTTPS requests for all component subdomains.
- Select the Enable preload checkbox to force instances of Google Chrome, Firefox, and Safari that access your HAProxy to refer to their built-in lists of known hosts that require HTTPS, of which HAProxy is one. This ensures that the first contact a browser has with your HAProxy is an HTTPS request, even if the browser has not yet received an HSTS header from HAProxy.
(Optional) If you are not using SSL encryption or if you are using self-signed certificates, you can select the Disable SSL certificate verification for this environment checkbox. This also deactivates SSL verification for route services.
Note: Select this checkbox only for development and testing environments. Do not select it for production environments.
(Optional) If you do not want the Gorouter to accept any non-encrypted HTTP traffic, select the Disable HTTP on the Gorouter and HAProxy checkbox.
Under TLS termination point, select Infrastructure load balancer.
(Optional) If your PAS deployment uses HAProxy and you want it to receive traffic only from specific sources, configure these fields:
- HAProxy protected domains: Enter a comma-separated list of domains from which PAS can receive traffic.
- (Optional) HAProxy trusted CIDRs: Enter a space-separated list of CIDRs to limit which IP addresses from the protected domains can send traffic to PAS.
Click Save.
Set Up DNS for HAProxy
You only need to perform this procedure if you are using one instance of HAProxy such as in a development environment. If you would like HAProxy to be highly available, you must have a load balancer in front of it. In this case, you point DNS at the load balancer.
To use a single-instance HAProxy load balancer in a vSphere or OpenStack deployment:
Create an A record in your DNS that points to the HAProxy IP address. The A record associates the System domain and Apps domain that you configure in the Domains pane of the Pivotal Platform tile with the HAProxy IP address.
For example, withpcf.example.com
as the main subdomain for your Pivotal Platform deployment and an HAProxy IP address203.0.113.1
, you must create an A record in your DNS that servesexample.com
and points*.pcf
to203.0.113.1
.Name Type Data Domain *.pcf A 203.0.113.1 example.com To test your DNS entry, run:
host
The
host
command should return your HAProxy IP address.