Skip to content

Commit f0f8bed

Browse files
Update server-config docs.
1 parent 29575c2 commit f0f8bed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/server-config.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* [Configuration File Content](#configuration-file-content)
99
* [Configuration File Example](#configuration-file-example)
1010
- [Configuring HTTP vs HTTPS](#configuring-http-vs-https)
11-
- [Configuring TPS](#configuring-http-vs-https)
1211
- [Authentication](#authentication)
1312
* [Enabling Authentication](#enabling-authentication)
1413
* [Password File](#password-file)
@@ -83,6 +82,10 @@ at [`logging.config` documentation page](https://docs.python.org/3.6/library/log
8382
- `TABPY_KEY_FILE` - absolute path to private key file to run TabPy with.
8483
Only used with `TABPY_TRANSFER_PROTOCOL` set to `https`. Default value -
8584
not set.
85+
- `TABPY_MINIMUM_TLS_VERSION` - set the minimum TLS version that the server
86+
will accept for secure connections (`TLSv1_2`, `TLSv1_3`, etc). Refer to
87+
[docs.python.org](https://docs.python.org/3/library/ssl.html#ssl.TLSVersion.MINIMUM_SUPPORTED)
88+
for acceptable values. Default value - `TLSv1_2`.
8689
- `TABPY_LOG_DETAILS` - when set to `true` additional call information
8790
(caller IP, URL, client info, etc.) is logged. Default value - `false`.
8891
- `TABPY_MAX_REQUEST_SIZE_MB` - maximal request size supported by TabPy server
@@ -124,6 +127,7 @@ settings._
124127
# TABPY_TRANSFER_PROTOCOL = https
125128
# TABPY_CERTIFICATE_FILE = /path/to/certificate/file.crt
126129
# TABPY_KEY_FILE = /path/to/key/file.key
130+
# TABPY_MINIMUM_TLS_VERSION = TLSv1_2
127131

128132
# Log additional request details including caller IP, full URL, client
129133
# end user info if provided.

0 commit comments

Comments
 (0)