Skip to content

Instantly share code, notes, and snippets.

View mustafasegf's full-sized avatar

Mustafa Zaki Assagaf mustafasegf

View GitHub Profile
@mustafasegf
mustafasegf / wrapper.sh
Created August 26, 2023 21:16
wraper script to make reverse proxy from subdomain.localhost to runnign port
#!/usr/bin/env bash
RUNNER=$1
NAME=$2
if [ $# -lt 1 ]; then
echo "Usage <runner command> [name]"
exit 1
fi
if [ -z $NAME ]; then