Add info about admin user

This commit is contained in:
Joey Yakimowich-Payne 2026-01-15 08:43:18 -07:00
commit cdf5c2577e
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
2 changed files with 17 additions and 1 deletions

View file

@ -28,6 +28,21 @@ After running the script, start the stack:
docker compose -f docker-compose.prod.yml -f docker-compose.caddy.yml up -d
```
### Accessing Authentik Admin
After the stack is running, you can access the Authentik admin interface:
1. **URL**: `https://auth.your-domain.com/if/admin/`
2. **Username**: `akadmin`
3. **Password**: The password shown when you ran `setup-prod.sh` (stored as `AUTHENTIK_BOOTSTRAP_PASSWORD` in `.env`)
From the admin interface you can:
- Manage users and groups
- View application access logs
- Configure additional OAuth providers
- Set up email for password recovery
- Customize the login/signup UI
## Manual Setup
If you prefer to configure manually, follow these steps:

View file

@ -207,8 +207,9 @@ echo "────────────────────────
echo -e " Main Domain: ${BLUE}https://${KABOOT_DOMAIN}${NC}"
echo -e " Auth Domain: ${BLUE}https://${AUTH_DOMAIN}${NC}"
echo ""
echo -e "${BOLD}Authentik Admin Credentials${NC}"
echo -e "${BOLD}Authentik Admin${NC}"
echo "────────────────────────────────────────────────────────────"
echo -e " Admin URL: ${BLUE}https://${AUTH_DOMAIN}/if/admin/${NC}"
echo -e " Username: ${YELLOW}akadmin${NC}"
echo -e " Password: ${YELLOW}${AUTHENTIK_BOOTSTRAP_PASSWORD}${NC}"
echo ""