- Home
- Docs
- Installation and configuration
- Installation and configuration
- Docker version
- Getting access to the Info page
Getting access to the Info page
The Info page provides detailed information about ONLYOFFICE Docs:
- build information (type, version, release date);
- license details (start date, expiration date);
- connection limits (for editors and live viewer).
In addition, the page displays connection statistics:
- the current number of active connections;
- peak connection counts;
- average number of connections over a specific time period.
These statistics are shown separately for both the document editors and the live viewer.
Starting from version 9.0, the Info page also includes the ability to configure the AI plugin models, allowing integration and management of AI-related features directly from the interface.


Access to the Info page is currently restricted to the local machine. To enable external access, you can modify the nginx configuration:
These instructions apply to the Docker, Debian, RPM, and Windows installation types.
Open the nginx configuration file. The path to the file depends on the operating system you use:
Windows
C:\Program Files\ONLYOFFICE\DocumentServer\nginx\conf\includes\ds-docservice.conf
Linux
/etc/nginx/includes/ds-docservice.conf
Docker
/etc/nginx/includes/ds-docservice.conf
(within the Docker container)Refer to the following code block:
{ location ~* ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(info)(\/.*)$ { allow 127.0.0.1; deny all; proxy_pass http://docservice/$2$3; } }
Update the
allow
directive to allow access to the Info page from a specific IP address:{ location ~* ^(\/[\d]+\.[\d]+\.[\d]+[\.|-][\d]+)?\/(info)(\/.*)$ { allow <IP_address>; deny all; proxy_pass http://docservice/$2$3; } }
where
<IP_address>
is the required IP address of the client that will be used to access the Info page.Reload the Nginx service with the following command:
service nginx reload
Or restart the ONLYOFFICE DocumentServer Proxy service for Windows:
net stop DsProxySvc net start DsProxySvc
Open your browser, enter the Document Server address, and add
/info/
to the end of the address:https://documentserver_address/info/
where
documentserver_address
is the name of the server with the ONLYOFFICE Docs installed.