3da9438b63
Run this script to download the latest cloudflared.exe from Cloudflare (if it's not available in the same folder as the script already) and run it to set up a secure HTTPS tunnel to your SillyTavern instance instead of using insecure unencrypted HTTP.
4 lines
205 B
Batchfile
4 lines
205 B
Batchfile
@echo off
|
|
if not exist cloudflared.exe curl -Lo cloudflared.exe https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-amd64.exe
|
|
cloudflared.exe tunnel --url localhost:8000
|