File tree 2 files changed +8
-11
lines changed
2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -130,33 +130,24 @@ const configSchema = convict({
130
130
131
131
https : {
132
132
doc : 'HTTPS configuration.' ,
133
- format : Object ,
134
- default : {
135
- key : '' ,
136
- cert : '' ,
137
- } ,
138
133
139
134
key : {
140
135
doc : 'HTTPS Certificate key' ,
141
136
format : String ,
142
137
default : '' ,
138
+ env : 'ACTUAL_HTTPS_KEY' ,
143
139
} ,
144
140
145
141
cert : {
146
142
doc : 'HTTPS Certificate' ,
147
143
format : String ,
148
144
default : '' ,
145
+ env : 'ACTUAL_HTTPS_CERT' ,
149
146
} ,
150
147
} ,
151
148
152
149
upload : {
153
150
doc : 'Upload configuration.' ,
154
- format : Object ,
155
- default : {
156
- fileSizeSyncLimitMB : 20 ,
157
- syncEncryptedFileSizeLimitMB : 50 ,
158
- fileSizeLimitMB : 20 ,
159
- } ,
160
151
161
152
fileSizeSyncLimitMB : {
162
153
doc : 'Sync file size limit (in MB)' ,
Original file line number Diff line number Diff line change
1
+ ---
2
+ category : Bugfix
3
+ authors : [lelemm]
4
+ ---
5
+
6
+ Fix for objects in config file
You can’t perform that action at this time.
0 commit comments