// proxy/index.go
package proxy
import (
"net/http"
)
func ServeIndexPage(w http.ResponseWriter, r *http.Request) {
html := `
Secure Site Proxy
Security Features:
- End-to-end encrypted connection
- No logging of accessed URLs
- Automatic content rewriting
- Protection against private network access
`
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.Write([]byte(html))
}