{"id":15051415,"url":"https://github.com/nextcloud/documentserver_community","last_synced_at":"2026-04-01T18:03:48.324Z","repository":{"id":38672702,"uuid":"205429728","full_name":"nextcloud/documentserver_community","owner":"nextcloud","description":"Document server for onlyoffice","archived":false,"fork":false,"pushed_at":"2026-03-19T02:14:37.000Z","size":328,"stargazers_count":143,"open_issues_count":27,"forks_count":31,"subscribers_count":24,"default_branch":"master","last_synced_at":"2026-03-19T16:14:35.973Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://apps.nextcloud.com/apps/documentserver_community","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nextcloud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2019-08-30T17:39:54.000Z","updated_at":"2026-03-19T02:12:57.000Z","dependencies_parsed_at":"2024-02-14T00:25:44.199Z","dependency_job_id":"1ee80ba9-f9a6-490e-b1fb-7206a6f26002","html_url":"https://github.com/nextcloud/documentserver_community","commit_stats":null,"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/nextcloud/documentserver_community","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fdocumentserver_community","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fdocumentserver_community/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fdocumentserver_community/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fdocumentserver_community/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nextcloud","download_url":"https://codeload.github.com/nextcloud/documentserver_community/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextcloud%2Fdocumentserver_community/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290742,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-24T21:35:03.500Z","updated_at":"2026-04-01T18:03:48.288Z","avatar_url":"https://github.com/nextcloud.png","language":"PHP","readme":"# Community Documentserver\n\nThis is a easy way to get ONLYOFFICE integrated in Nextcloud. It is developed purely as a way for home users to not have to deal with docker images, reverse proxies and other things. It is not aimed at anything beyond that - if you need it to scale, use the docker image, packages or other methods, those will always be faster and more scalable.\n\nThe work on this was sponsored by Nextcloud GmbH for the private home user community. There is no commercial support available and there will not be.\n\n## Requirements\nThe community document server only supports running on x86-64 Linux servers using glibc based distributions.\nTo get it running, you also need to install the [ONLYOFFICE](https://apps.nextcloud.com/apps/onlyoffice) app.\n\nWe'd like to also support ARM devices like the Raspberry Pi in the future.\n\n## Configuring OnlyOffice\n\nThe community documentserver will automatically configure itself if no other document server is configured in the onlyoffice settings (\"Document Editing Service address\" is empty).\nAll other \"Server settings\" should be left empty.\n\nIf autoconfiguration fails for any reason, you may manually enter the url. Log in as the admin and go to Settings \u003e ONLYOFFICE. For the ONLYOFFICE Docs address, enter the value in the format of `https://\u003cnextcloud_server\u003e/apps/documentserver_community/`.\n\n## Update\n\nAfter community document server update and any related app (OnlyOffice app for example), you should clear your browser cache to get newer version running.\n\n## Adding fonts\n\nYou can add custom fonts to the document server using the following occ commands\n\n- Add font by path `occ documentserver:fonts --add /usr/share/fonts/myfont.ttf`\n- List added fonts `occ documentserver:fonts`\n- Remove an added font `occ documentserver:fonts --remove myfont.ttf`\n\n## Self signed certificates\n\nIf your nextcloud is using a self signed certificate for https, you'll need to import the certificate into nextcloud's certificate store to make the documentserver work.\n\n    occ security:certificates:import /path/to/certificate.crt\n\n## SELinux\n\nIf you're using SELinux you'll need to configure it to allow executing binaries from the `documentserver_community/3rdparty` directory, for example:\n\n```\nsemanage fcontext -a -t httpd_sys_script_exec_t '/var/www/html/nextcloud/apps/documentserver_community/3rdparty/onlyoffice/documentserver(/.*)?'\nrestorecon -R -v /var/www/html/nextcloud\n```\n\nSpecific commands and paths will differ based on your specific setup.\n\n## Setup from git\n\nWhen installing from git `make`, `curl`, `rpm2cpio`, and `cpio` are required.\n\n- clone the repo into the Nextcloud app directory \n- run `make` in the app folder to download the 3rdparty components\n- Enable the app\n\n# OnlyOffice components\n\nThis app includes components from OnlyOffice to do a large part of the work.\nWhile building the app, these components are copied over from the official OnlyOffice documentserver docker image (see `Makefile`).\nThe source for this can be found at the [OnlyOffice](https://github.com/ONLYOFFICE) github,\nprimarily the [web-apps](https://github.com/ONLYOFFICE/web-apps), [sdkjs](https://github.com/ONLYOFFICE/sdkjs) and [core](https://github.com/ONLYOFFICE/core) repositories.\n\nThese components are licenced under AGPL-3.0 with their copyright belonging to the OnlyOffice team.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextcloud%2Fdocumentserver_community","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnextcloud%2Fdocumentserver_community","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextcloud%2Fdocumentserver_community/lists"}