Skip to content

Instantly share code, notes, and snippets.

View aktolu's full-sized avatar

Muhammed Aktolu aktolu

View GitHub Profile
<#
.SYNOPSIS
Exposes a specific local XAMPP project directory to the internet via Cloudflare Tunnel using a full URL.
#>
# Prompt the user for the full local URL
$InputUrl = Read-Host "Please enter the full local URL (e.g., http://localhost/dev/proje/)"
# Clean the input and ensure it has a proper HTTP scheme
$InputUrl = $InputUrl.Trim()