You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
439 B
12 lines
439 B
#!/bin/bash |
|
|
|
# This script will make your local Owncast server available at a public URL. |
|
# It's particularly useful for testing on mobile devices. |
|
|
|
PORT=8080 |
|
USERNAME=$(whoami) |
|
BRANCH=$(git symbolic-ref --short -q HEAD | sed 's/[^a-z A-Z 0-9]//g') |
|
HOSTNAME="oc-$USERNAME-$BRANCH" |
|
|
|
echo "Please wait. Making the local server port $PORT available at https://$HOSTNAME.serveo.net" |
|
ssh -R "$HOSTNAME".serveo.net:80:localhost:$PORT serveo.net
|
|
|