mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-04-07 14:04:35 +08:00
[bug] Change win-ca inject mode to experimental; For bug 70962
This commit is contained in:
@ -161,6 +161,9 @@
|
||||
"getChanges": {
|
||||
}
|
||||
},
|
||||
"win-ca": {
|
||||
"inject": "+"
|
||||
},
|
||||
"wopi": {
|
||||
"enable": false,
|
||||
"host" : "",
|
||||
|
||||
@ -58,10 +58,6 @@ const https = require('https');
|
||||
const ca = require('win-ca/api');
|
||||
const util = require('util');
|
||||
|
||||
if(!ca.disabled) {
|
||||
ca({inject: true});
|
||||
}
|
||||
|
||||
const contentDisposition = require('content-disposition');
|
||||
const operationContext = require("./operationContext");
|
||||
|
||||
@ -86,6 +82,9 @@ const cfgRequesFilteringAgent = config.get('services.CoAuthoring.request-filteri
|
||||
const cfgStorageExternalHost = config.get('storage.externalHost');
|
||||
const cfgExternalRequestDirectIfIn = config.get('externalRequest.directIfIn');
|
||||
const cfgExternalRequestAction = config.get('externalRequest.action');
|
||||
const cfgWinCa = config.get('win-ca');
|
||||
|
||||
ca(cfgWinCa);
|
||||
|
||||
const minimumIterationsByteLength = 4;
|
||||
const dnscache = getDnsCache(cfgDnsCache);
|
||||
|
||||
Reference in New Issue
Block a user