From 13966779fc90fc328254cceae35d2ca791d55957 Mon Sep 17 00:00:00 2001 From: nabim777 Date: Thu, 12 Feb 2026 12:18:47 +0545 Subject: [PATCH] docs: correct the readiability Signed-off-by: nabim777 --- docs/testing/smoke_testing.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/testing/smoke_testing.md b/docs/testing/smoke_testing.md index ab1939487..f62ee2ab2 100644 --- a/docs/testing/smoke_testing.md +++ b/docs/testing/smoke_testing.md @@ -119,7 +119,7 @@ bash integration_setup.sh - [ ] Go to `Administation > Security` - [ ] Add OIDC client ("OpenID Connect clients" section): - Add a client name (not an identifier) - - Add a redirect URL (/auth/oidc-/callback) + - Add a redirect URL : `/auth/oidc-/callback` - After adding, choose `Access Token Type` as `JWT Access Token (RFC9068)`. - Set `Refresh Token Expire Time` to `Never` - Save @@ -129,7 +129,7 @@ bash integration_setup.sh - [ ] In OpenProject, go to `Administration > Authentication > OpenID providers` - [ ] Add a new custom OpenID provider: - Display name: `nextcloud` (use this name as redirect URL in Nextcloud: ) - - Discovery URL: `/index.php/.well-known/openid-configuration` + - Discovery URL: `/index.php/.well-known/openid-configuration` - Client ID: Client ID copied earlier from Nextcloud - Client secret: Client secret copied earlier from Nextcloud - [ ] Go to `Administration > Files` @@ -179,7 +179,7 @@ bash integration_setup.sh - Identifier: `keycloak` - Client ID: nextcloud client id from keycloak - Client Secret: nextcloud client secret from keycloak - - Discovery endpoint: `/realms//.well-known/openid-configuration` + - Discovery endpoint: `/realms//.well-known/openid-configuration` - Scope: `openid email profile api_v3` - submit - [ ] Login as keycloak-created user in `Nextcloud`. @@ -190,7 +190,7 @@ bash integration_setup.sh - [ ] In **OpenProject**, go to `Administration > Authentication > OpenID providers` - [ ] Add a new custom OpenID provider: - Display name: `keycloak` - - Discovery URL: `/realms//.well-known/openid-configuration` + - Discovery URL: `/realms//.well-known/openid-configuration` - Client ID: Client ID of openproject from keycloak - Client secret: Client secret of openproject from keycloak - [ ] Login as keycloak-created user in `Openproject`. @@ -260,11 +260,11 @@ NC_ADMIN_USERNAME=admin \ NC_ADMIN_PASSWORD=admin \ NC_INTEGRATION_ENABLE_NAVIGATION=false \ NC_INTEGRATION_ENABLE_SEARCH=false \ -NC_HOST=https://nextcloud.local \ +NC_HOST= \ OP_ADMIN_USERNAME=admin \ OP_ADMIN_PASSWORD=admin \ OP_STORAGE_NAME=nextcloud \ -OP_HOST=https://openproject.local \ +OP_HOST= \ OP_USE_LOGIN_TOKEN=true \ bash integration_oidc_setup.sh ``` @@ -286,7 +286,7 @@ bash integration_oidc_setup.sh - [ ] Run the `integration_oidc_setup.sh` script to set up integration without project folder with the following command: ```bash -NC_HOST=https://nextcloud.local \ +NC_HOST= \ NC_ADMIN_USERNAME=admin \ NC_ADMIN_PASSWORD=admin \ NC_INTEGRATION_PROVIDER_TYPE=external \ @@ -295,7 +295,7 @@ NC_INTEGRATION_OP_CLIENT_ID=openproject \ NC_INTEGRATION_TOKEN_EXCHANGE=false \ NC_INTEGRATION_ENABLE_NAVIGATION=false \ NC_INTEGRATION_ENABLE_SEARCH=false \ -OP_HOST=https://openproject.local \ +OP_HOST= \ OP_ADMIN_USERNAME=admin \ OP_ADMIN_PASSWORD=admin \ OP_STORAGE_NAME=nextcloud \ @@ -321,7 +321,7 @@ bash integration_oidc_setup.sh - [ ] Run the `integration_oidc_setup.sh` script to set up integration without project folder with the following command: ```bash -NC_HOST=https://nextcloud.local \ +NC_HOST= \ NC_ADMIN_USERNAME=admin \ NC_ADMIN_PASSWORD=admin \ NC_INTEGRATION_PROVIDER_TYPE=external \ @@ -330,7 +330,7 @@ NC_INTEGRATION_OP_CLIENT_ID=openproject \ NC_INTEGRATION_TOKEN_EXCHANGE=true \ NC_INTEGRATION_ENABLE_NAVIGATION=false \ NC_INTEGRATION_ENABLE_SEARCH=false \ -OP_HOST=https://openproject.local \ +OP_HOST= \ OP_ADMIN_USERNAME=admin \ OP_ADMIN_PASSWORD=admin \ OP_STORAGE_NAME=nextcloud \