You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/self-hosting.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -277,6 +277,22 @@ Add `https://puter.<your-domain>/auth/oidc/callback/login` to the OAuth client's
277
277
278
278
The `client_id` is your Apple Services ID. `team_id`, `key_id`, and `private_key` come from the Apple Developer Portal (Keys section — create a key with "Sign in with Apple" enabled). The `private_key` is the contents of the `.p8` file Apple provides. Add `https://puter.<your-domain>/auth/oidc/callback/login` and `https://puter.<your-domain>/auth/oidc/callback/signup` as return URLs in the Apple Services ID configuration.
279
279
280
+
### Sign in with Microsoft
281
+
282
+
```json
283
+
"oidc": {
284
+
"providers": {
285
+
"microsoft": {
286
+
"client_id": "YOUR_APPLICATION_CLIENT_ID",
287
+
"client_secret": "YOUR_CLIENT_SECRET_VALUE",
288
+
"tenant_id": "YOUR_TENANT_ID"
289
+
}
290
+
}
291
+
}
292
+
```
293
+
294
+
Register an app in the Azure Portal (Microsoft Entra ID → App registrations). The `client_id` is the Application (client) ID, `client_secret` is a client secret value, and `tenant_id` is the Directory (tenant) ID. Use `common` as `tenant_id` to allow any Microsoft account (personal and organizational); omit it to default to `common`. Add `https://puter.<your-domain>/auth/oidc/callback/login` and `https://puter.<your-domain>/auth/oidc/callback/signup` as redirect URIs under Authentication in the app registration.
295
+
280
296
### AI providers
281
297
282
298
Any provider with a key set is auto-enabled. Same shape as `ollama` above:
0 commit comments