🌐 SSL & Reverse Proxy Demo

Route: / (Root)
HTTPS Secured Connection

Welcome to the Home Page

This is the root path (/) of the website. When you visit a website, this is typically the first page you see.

In a reverse proxy setup, this request goes through the proxy server which then routes it to the appropriate backend server.

How Your Request Reached This Page

1
Browser Request: https://example.com/
2
Reverse Proxy: Receives encrypted HTTPS request
3
SSL Termination: Proxy decrypts the request
4
Route Matching: Path "/" → main-server:8080
5
Response: Server sends HTML back through proxy (re-encrypted)

Navigate to Other Routes

📥 How to Use These Files

Save this file as: index.html

Also save: admin.html and dashboard.html (see next artifacts)

Open each file in your browser to see how different routes work!

🔐 Security Benefits

SSL/TLS Encryption: All data between browser and server is encrypted

Centralized Security: Reverse proxy handles authentication and filtering

Hidden Backend: Internal server addresses are never exposed to clients