Docs: Image renderer https configuration using environment variables (#100846)

This commit is contained in:
Ezequiel Victorero
2025-02-18 14:35:40 -03:00
committed by GitHub
parent 67d8610e31
commit fd8a2158f1
@@ -221,10 +221,14 @@ HTTPS protocol is supported in the image renderer v3.11.0 and later.
Change the protocol of the server, it can be `http` or `https`. Default is `http`.
```bash
HTTP_PROTOCOL=https
```
```json
{
"service": {
"protocol": "http"
"protocol": "https"
}
}
```
@@ -233,6 +237,11 @@ Change the protocol of the server, it can be `http` or `https`. Default is `http
Path to the image renderer certificate and key file used to start an HTTPS server.
```bash
HTTP_CERT_FILE=./path/to/cert
HTTP_CERT_KEY=./path/to/key
```
```json
{
"service": {
@@ -246,6 +255,10 @@ Path to the image renderer certificate and key file used to start an HTTPS serve
Minimum TLS version allowed. Accepted values are: `TLSv1.2`, `TLSv1.3`. Default is `TLSv1.2`.
```bash
HTTP_MIN_TLS_VERSION=TLSv1.2
```
```json
{
"service": {