{"id":35185146,"url":"https://github.com/georchestra/nextcloud-app","last_synced_at":"2026-04-21T23:03:11.125Z","repository":{"id":43257201,"uuid":"373851703","full_name":"georchestra/nextcloud-app","owner":"georchestra","description":"A NextCloud app to integrate NextCloud behind geOrchestra's Security Proxy and benefit from the SSO","archived":false,"fork":false,"pushed_at":"2022-03-21T14:49:10.000Z","size":79,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":8,"default_branch":"docker-integration","last_synced_at":"2024-06-11T19:50:57.853Z","etag":null,"topics":["georchestra","nextcloud","php","sso"],"latest_commit_sha":null,"homepage":"","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/georchestra.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}},"created_at":"2021-06-04T13:32:42.000Z","updated_at":"2021-11-10T13:19:37.000Z","dependencies_parsed_at":"2022-09-23T05:31:01.830Z","dependency_job_id":null,"html_url":"https://github.com/georchestra/nextcloud-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/georchestra/nextcloud-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georchestra%2Fnextcloud-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georchestra%2Fnextcloud-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georchestra%2Fnextcloud-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georchestra%2Fnextcloud-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/georchestra","download_url":"https://codeload.github.com/georchestra/nextcloud-app/tar.gz/refs/heads/docker-integration","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georchestra%2Fnextcloud-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32113748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T11:25:29.218Z","status":"ssl_error","status_checked_at":"2026-04-21T11:25:28.499Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["georchestra","nextcloud","php","sso"],"created_at":"2025-12-29T04:57:08.814Z","updated_at":"2026-04-21T23:03:11.120Z","avatar_url":"https://github.com/georchestra.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Build and start\n\n```bash\ndocker-compose build\ndocker-compose up -d\n```\n\nNow NextCloud should be available at: https://georchestra-127-0-1-1.traefik.me/files\n\n## Run tests (do not pass yet)\n\n```bash\n    docker-compose run \\\n        --user `id -u` \\\n        --entrypoint=\"\" \\\n        -v $(PWD)/extension:/src/extension \\\n        nextcloud make -C /src/extension/ test\n```\n\n## Test an upgrade\n\n```bash\n# Start with version 22.2.2-apache\ndocker-compose down -v\ndocker-compose build --build-arg BASETAG=22.2.2-apache\ndocker-compose up -d\ndocker-compose logs -f nextcloud\n\n# Copy src volume content in a temporary directory\nsudo rm -rf /tmp/nextcloud-app_nextcloud_src\nsudo cp -rp /home/amorvan/data/docker/volumes/nextcloud-app_nextcloud_src/_data /tmp/nextcloud-app_nextcloud_src\n\n# Try an upgrade to 22.2.3-apache\nsudo rm -rf /home/amorvan/data/docker/volumes/nextcloud-app_nextcloud_src/_data\nsudo cp -rp /tmp/nextcloud-app_nextcloud_src /home/amorvan/data/docker/volumes/nextcloud-app_nextcloud_src/_data\ndocker-compose build --build-arg BASETAG=22.2.3-apache\ndocker-compose rm --stop -f nextcloud\ndocker-compose up -d\ndocker-compose logs -f nextcloud\n```\n\n## Links\n\nShow NextCloud logs:\n\ndocker-compose exec nextcloud sh -c \"tail -f data/nextcloud.log | jq\"\n\nNextCloud base image:\n\nhttps://github.com/nextcloud/docker\n\nDebuggage VSCode:\n\nhttps://confluence.camptocamp.com/confluence/display/GEOR/NextCloud\n\nPostmortem:\n\nhttps://confluence.camptocamp.com/confluence/display/GEOR/Postmortem+Projet+Nextcloud\n\n\n# Debug LDAP Sync\n\nSet log level to debug:\n\n```bash\ndocker-compose exec --user www-data nextcloud php occ config:system:set --type=\"integer\" --value=\"0\" \"loglevel\"\n```\n\nRun synchronization:\n\n```bash\ncat \u003c\u003cEOF | docker-compose exec -T nextcloud_db psql -U nextcloud\nUPDATE oc_jobs SET last_run = 0, reserved_at = 0 WHERE id = 36;\nUPDATE oc_appconfig SET configvalue = '0' WHERE appid = 'user_ldap' AND configkey = 's01_lastChange';\nEOF\n\ndocker-compose exec --user www-data nextcloud php cron.php\n```\n\nDisplay list of LDAP users:\n\n```sql\ncat \u003c\u003cEOF | docker-compose exec -T nextcloud_db psql -U nextcloud\nSELECT * FROM oc_ldap_user_mapping;\nEOF\n```\n\nDisplay logs:\n\n```bash\nmake logs\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorchestra%2Fnextcloud-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorchestra%2Fnextcloud-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorchestra%2Fnextcloud-app/lists"}