From 76dff59ab7f5f03db065c43ba17fec0d92abe519 Mon Sep 17 00:00:00 2001 From: mul91n Date: Fri, 20 Aug 2021 08:31:36 +1000 Subject: [PATCH] Fix URL link in index HEREDOC --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 771b016..d72e5da 100755 --- a/index.php +++ b/index.php @@ -329,10 +329,10 @@ echo << === How To Upload === You can upload files to this site via a simple HTTP POST, e.g. using curl: -curl -F "file=@/path/to/your/file.jpg" $url +curl -F "file=@/path/to/your/file.jpg" $SITE_URL Or if you want to pipe to curl *and* have a file extension, add a "filename": -echo "hello" | curl -F "file=@-;filename=.txt" $url +echo "hello" | curl -F "file=@-;filename=.txt" $SITE_URL On Windows, you can use ShareX and import this custom uploader. On Android, you can use an app called Hupl with this uploader.