docker: fix all aliasgroup env variable values added to blocked list
Signed-off-by: Rash419 <rashesh.padia@collabora.com> Change-Id: Id7480ab88564965cc7aba34c5020daaf18259815
This commit is contained in:
parent
0ba51f81e7
commit
72da1dccaf
1 changed files with 3 additions and 2 deletions
|
@ -3135,8 +3135,9 @@ void COOLWSD::initializeEnvOptions()
|
|||
{
|
||||
if (first)
|
||||
{
|
||||
_overrideSettings["storage.wopi.alias_groups.group[" + std::to_string(n) +
|
||||
"].host"] = alias;
|
||||
const std::string path = "storage.wopi.alias_groups.group[" + std::to_string(n) + "].host";
|
||||
_overrideSettings[path] = alias;
|
||||
_overrideSettings[path + "[@allow]"] = true;
|
||||
first = false;
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue