Skip to content

website/integrations: add nextcloud ldap config and update doc to new styling#14866

Merged
dewi-tik merged 20 commits intomainfrom
website/integrations--add-nextcloud-ldap-and-update-doc
Jun 10, 2025
Merged

website/integrations: add nextcloud ldap config and update doc to new styling#14866
dewi-tik merged 20 commits intomainfrom
website/integrations--add-nextcloud-ldap-and-update-doc

Conversation

@dewi-tik
Copy link
Contributor

@dewi-tik dewi-tik commented Jun 4, 2025

Details

Adds LDAP config steps to the nextcloud doc and updates the entire document to new styling

LDAP based off this comment: #2783 (comment)


Checklist

  • The documentation has been updated
  • The documentation has been formatted (make website)

@netlify
Copy link

netlify bot commented Jun 4, 2025

Deploy Preview for authentik-docs ready!

Name Link
🔨 Latest commit 75b0646
🔍 Latest deploy log https://app.netlify.com/projects/authentik-docs/deploys/68429b20cf9f5a0008d71f69
😎 Deploy Preview https://deploy-preview-14866--authentik-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@netlify
Copy link

netlify bot commented Jun 4, 2025

Deploy Preview for authentik-storybook ready!

Name Link
🔨 Latest commit 75b0646
🔍 Latest deploy log https://app.netlify.com/projects/authentik-storybook/deploys/68429b20be628d0008d017f8
😎 Deploy Preview https://deploy-preview-14866--authentik-storybook.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@codecov
Copy link

codecov bot commented Jun 4, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 92.77%. Comparing base (ef5d358) to head (75b0646).
Report is 47 commits behind head on main.

✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #14866      +/-   ##
==========================================
- Coverage   92.77%   92.77%   -0.01%     
==========================================
  Files         818      818              
  Lines       42196    42196              
==========================================
- Hits        39149    39148       -1     
- Misses       3047     3048       +1     
Flag Coverage Δ
e2e 47.54% <ø> (ø)
integration 24.45% <ø> (ø)
unit 90.66% <ø> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Contributor

github-actions bot commented Jun 4, 2025

authentik PR Installation instructions

Instructions for docker-compose

Add the following block to your .env file:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-8049adfaada53618b0e64aada352ff82502ab445
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

Afterwards, run the upgrade commands from the latest release notes.

Instructions for Kubernetes

Add the following block to your values.yml file:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
    image:
        repository: ghcr.io/goauthentik/dev-server
        tag: gh-8049adfaada53618b0e64aada352ff82502ab445

Afterwards, run the upgrade commands from the latest release notes.

@dewi-tik dewi-tik marked this pull request as ready for review June 4, 2025 11:46
@dewi-tik dewi-tik requested a review from a team as a code owner June 4, 2025 11:46
Copy link
Member

@dominic-r dominic-r left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a

@dominic-r
Copy link
Member

Uhhh github mobile are you ok?

dewi-tik and others added 5 commits June 4, 2025 13:41
Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>
Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>
Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>
Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>
- **Email mapping:** `email`
- **Quota mapping:** `quota` (leave blank if the custom profile scope was skipped)
- **Groups mapping:** `groups` (leave blank if the custom profile scope was skipped)
- **User ID mapping**: `sub` (or `user_id` for existing users)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

user_id if it can be assured there are no new users? Because I don't think it's possible to set both mappings at once

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What would be your recommendation for the edited line?

Automatically redirect users to authentik when they access Nextcloud by running the following command on your Nextcloud instance:

```bash
sudo -u www-data php var/www/nextcloud/occ config:app:set --value=0 user_oidc allow_multiple_user_backends
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think there's sudo on the docker installations

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could remove the sudo part for used who don't run it bare metal and assume the ones which are adventurous enough to run it in Docker know what the -u flag is

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point. I found this command recommended on the nextcloud GitHub. The recommended nextcloud install uses Docker, so it should be relevant to the majority of users

Copy link
Contributor

@tanberry tanberry left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dominic had some technical questions, and I have a few suggested edits, but hen let's get this beast merged! Thank you so much @dewi-tik.

@dewi-tik dewi-tik merged commit c65b3e8 into main Jun 10, 2025
101 checks passed
@dewi-tik dewi-tik deleted the website/integrations--add-nextcloud-ldap-and-update-doc branch June 10, 2025 11:09
kensternberg-authentik added a commit that referenced this pull request Jun 10, 2025
* main: (21 commits)
  web/admin: fix language in certificate import  (#14953)
  website/integrations: add new categories and update sidebar info (#14995)
  brands: fix custom_css being escaped (#14994)
  web/admin: show selected policy engine mode on bindings pages, allow setting it on sources (#12963)
  website/integrations: add bitwarden (#14922)
  core: bump goauthentik.io/api/v3 from 3.2025061.1 to 3.2025061.2 (#14986)
  website: bump @types/node from 22.15.30 to 24.0.0 in /website (#14988)
  website: bump the eslint group in /website with 3 updates (#14987)
  web: bump the eslint group across 2 directories with 3 updates (#14991)
  website/integrations: fix typos, update language and styling (#14978)
  website/integrations: add 1password (#14815)
  website/integrations: add nextcloud ldap config and update doc to new styling (#14866)
  outposts: Refactor session end signal and add LDAP support (#14539)
  core: bump cryptography from 45.0.3 to 45.0.4 (#14989)
  core: bump goauthentik/fips-python from 3.13.3-slim-bookworm-fips to 3.13.4-slim-bookworm-fips (#14990)
  web: bump API Client version (#14985)
  core, web: update translations (#14984)
  events: rework metrics endpoint (#14934)
  website/integrations: replaces all kbd and em tags (#14980)
  internal/outpost: fix incorrect usage of golang SHA API (#14981)
  ...
cavefire pushed a commit to cavefire/authentik that referenced this pull request Jun 24, 2025
… styling (goauthentik#14866)

* Initial changes

* Added LDAP config

* WIP

* WIP

* Updated document to new style and added LDAP config

* Make website

* WIP

* Fixed formatting on SAML section

* Typo

* Update website/integrations/services/nextcloud/index.mdx

Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>

* Update website/integrations/services/nextcloud/index.mdx

Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>

* Update website/integrations/services/nextcloud/index.mdx

Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>

* Update website/integrations/services/nextcloud/index.mdx

Co-authored-by: Dominic R <dominic@sdko.org>
Signed-off-by: Dewi Roberts <dewi@goauthentik.io>

* Applied suggestions from Dominic

* Applied more suggestions

* Typo

* Applied suggestions

---------

Signed-off-by: Dewi Roberts <dewi@goauthentik.io>
Co-authored-by: Dominic R <dominic@sdko.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants