#!/bin/bash # Setup script for FuckHTTP3 web proxy # Create templates directory if it doesn't exist mkdir -p templates # Check if index.html exists in templates directory if [ ! -f templates/index.html ]; then echo "Creating templates/index.html" cat > templates/index.html << 'EOL' FuckHTTP3 Proxy

FuckHTTP3 Web Proxy

Enter a URL below to browse through the HTTP/3 proxy

{{if .Error}}
{{.Error}}
{{end}}
EOL fi echo "Template setup complete!" chmod +x setup-templates.sh