Hello @Harishkumar
Locate default.json config in /etc/onlyoffice/documentserver inside the Docker container with Document Server first.
To connect to the container use command
docker exec -it [ID] bashwhere[ID]is the ID of Document Server container. To enlist all running containers usedocker ps.
Then in the default.json config locate this section:
"request-filtering-agent" : {
"allowPrivateIPAddress": false,
"allowMetaIPAddress": false
},
Change values false to true like that to allow these parameters:
"request-filtering-agent" : {
"allowPrivateIPAddress": true,
"allowMetaIPAddress": true
},
Restart Document Server services with supervisorctl restart all to apply these changes.