- Add PUBLIC_SERVER_URL environment variable for client-side connections
- Update /api/config endpoints to return public HTTPS URLs for frontend
- Keep internal HTTP URLs for server-to-server communication
- Resolves SSL certificate verification issues in admin service
- Maintains secure WSS/HTTPS connections for clients
- Change SERVER_URL from http:// to https:// in docker-compose
- Add WebSocket URL conversion logic (https:// → wss://, http:// → ws://)
- Resolves Mixed Content security error when client is served over HTTPS
- Ensures secure communication between client and server
- All services now connect to both 'principal' (external) and 'snatchgame-network' (internal)
- Allows Nginx proxy manager to route to containers via principal network
- Maintains internal communication between services
- Client and Admin now point to snatchGameServer.interno.com
- Ready for Nginx configuration with domain routing:
- snatchGame.interno.com → Client (port 3010)
- snatchGameServer.interno.com → Server (port 3067)
- snatchgGameAdmin.interno.com → Admin (port 3011)
- Change VITE_SERVER_URL to SERVER_URL in docker-compose
- Add dist directory serving for built assets
- Configure Express to serve JS modules with correct MIME type
- Fix undefined Game Server in containers
- Alpine Linux doesn't include curl by default
- Use wget with --spider flag for health checks
- Add wget installation to all Dockerfiles
- This should resolve container health check failures
- Add Dockerfiles for server, client, and admin services
- Create docker-compose.yml for orchestration
- Add Gitea Actions workflow for automated build/deploy
- Configure conditional builds based on directory changes
- Use gitea.interno.com registry for image storage
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>