feat(auth): integrate TinyAuth SSO for NetBox authentication
Deploy TinyAuth v4 as CT 115 (192.168.2.10) to provide centralized SSO authentication for NetBox via Nginx Proxy Manager. **New Infrastructure:** - CT 115: TinyAuth authentication layer - Domain: tinyauth.apophisnetworking.net - Integration: NPM auth_request → TinyAuth → NetBox **Configuration:** - Docker Compose with bcrypt-hashed credentials - NPM advanced config for auth_request integration - HTTPS enforcement via SSL termination **Issues Resolved:** - 500 Internal Server Error (Nginx config syntax) - "IP addresses not allowed" (APP_URL domain requirement) - Port mapping (8000:3000 for internal port 3000) - Invalid password (bcrypt hash requirement for v4) **Documentation:** - Complete TinyAuth README at services/tinyauth/README.md - Updated CLAUDE_STATUS.md with CT 115 infrastructure - Added bug report for scribe agent tool permissions **Note:** Container restart required on CT 115 to apply bcrypt hash 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
10
services/tinyauth/docker-compose.yml
Normal file
10
services/tinyauth/docker-compose.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
services:
|
||||
tinyauth:
|
||||
container_name: tinyauth
|
||||
image: ghcr.io/steveiliop56/tinyauth:v4
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "8000:3000" # TinyAuth listens on port 3000 internally, exposed as 8000
|
||||
environment:
|
||||
- APP_URL=https://tinyauth.apophisnetworking.net
|
||||
- USERS='jramos:$2b$05$/n3T47JhyggqQQ4tDi9rounDnN0RS/Se/9VQa6osa7XaL5vAAp2QW'
|
||||
Reference in New Issue
Block a user