Skip to content

Commit ff05047

Browse files
committed
Update config extender for ssl support
1 parent 7dd0caa commit ff05047

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

api/configextender.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,26 @@ const OVERRIDES = {
3232

3333
API: {
3434
MAX_SOCKETS: 'max_sockets',
35-
MAX_UPLOAD_FILE_SIZE: 'maxUploadFileSize'
35+
MAX_UPLOAD_FILE_SIZE: 'maxUploadFileSize',
36+
SSL: {
37+
ENABLED: 'enabled',
38+
KEY: 'key',
39+
CERT: 'cert',
40+
CA: 'ca',
41+
},
3642
},
3743

3844
WEB: {
3945
USE_INTERCOM: 'use_intercom',
4046
SECURE_COOKIES: 'secure_cookies',
4147
SESSION_SECRET: 'session_secret',
42-
SESSION_NAME: 'session_name'
48+
SESSION_NAME: 'session_name',
49+
SSL: {
50+
ENABLED: 'enabled',
51+
KEY: 'key',
52+
CERT: 'cert',
53+
CA: 'ca',
54+
},
4355
},
4456

4557
MAIL: {

0 commit comments

Comments
 (0)