Configuring SSL
This page outlines how to configure the HackerOne's PullRequest Proxy to use SSL.
Consider enabling HTTPS on the webhook endpoints that the PullRequest Proxy exposes to receive incoming web hooks from your provider. This is optional, but highly recommended. In order to use SSH for the proxy web hook handling, you must configured some additional fields on the .env file created earlier in this setup:
In order to use SSL for the PullRequest Proxy webhook handling, some additional fields must be configured on the .env file that we opened earlier:
USE_TLS=true
TLS_CERT_PATH=<path_to_ssl_cert>
TLS_KEY_PATH=<path_to_ssl_key>Last updated