This isn't just a static HTML page. It's a proof-of-concept demonstrating modern application deployment using container orchestration and secure tunneling.
Infrastructure & Tech Stack
- Docker Used for containerizing the Nginx web server application.
- Docker Compose Orchestrates the multi-container setup, defining services and networks.
- Nginx High-performance web server serving this static content internally on port 80.
- Ngrok Deployed via the Sidecar Pattern to create a secure public tunnel to the private Nginx container.
💡 How it works: The Nginx container is isolated in a private Docker network. The Ngrok container sits beside it in the same network, accepts public traffic, and forwards it directly to Nginx's internal container hostname.