You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cert_chain: "/path/to/cert.pem"# Deprecated: use `full_chain_cert` instead.
121
+
full_chain_cert: "/path/to/cert.pem"
121
122
private_key: "/path/to/key.pem"
122
123
smtp:
123
124
host: "smtp.email.com"
@@ -1305,12 +1306,13 @@ Command line equivalent [scheme](./cli.md#scheme).
1305
1306
1306
1307
_Dictionary_. TLS configuration options. DoltLab Enterprise only. _Optional_. See [serving DoltLab natively over HTTPS](../../guides/enterprise.md#serve-doltlab-over-https-natively) for more information.
1307
1308
1308
-
- [cert_chain](#cert_chain)
1309
+
- [cert_chain](#cert_chain) Deprecated, use `full_chain_cert` instead.
1310
+
- [full_chain_cert](#full_chain_cert)
1309
1311
- [private_key](#private_key)
1310
1312
1311
1313
### cert_chain
1312
1314
1313
-
_String_. The absolute path to a TLS certificate chain with `.pem` extension. _Required_.
1315
+
_String_. Deprecated, use `full_chain_cert` instead. The absolute path to a TLS full chain certificate with `.pem` extension. _Required_.
1314
1316
1315
1317
```yaml
1316
1318
# example installer_config.yaml
@@ -1321,6 +1323,19 @@ enterprise:
1321
1323
1322
1324
Command line equivalent [tls-cert-chain](./cli.md#tls-cert-chain).
1323
1325
1326
+
### full_chain_cert
1327
+
1328
+
_String_. The absolute path to a TLS full chain certificate with `.pem` extension. _Required_.
1329
+
1330
+
```yaml
1331
+
# example installer_config.yaml
1332
+
enterprise:
1333
+
tls:
1334
+
full_chain_cert: /path/to/tls/cert/chain.pem
1335
+
```
1336
+
1337
+
Command line equivalent [tls-full-chain-cert](./cli.md#tls-full-chain-cert).
1338
+
1324
1339
### private_key
1325
1340
1326
1341
_String_. The absolute path to a TLS private key with `.pem` extension. _Required_.
0 commit comments