From a3db4bf9deec5389f81077fa651f82390c931b47 Mon Sep 17 00:00:00 2001 From: HidUser0 Date: Mon, 16 Jan 2023 14:13:26 +0300 Subject: [PATCH] Fix index.html --- templates/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index ba119e9..45a8598 100755 --- a/templates/index.html +++ b/templates/index.html @@ -5,11 +5,12 @@ THE FULL POINTER {% set fhost_url = url_for("fhost", _external=True).rstrip("/") %} HTTP POST files here: curl --proxy 127.0.0.1:4444 -F'file=@yourfile.png' {{ fhost_url }} + Upload command output: - command | curl -T - --proxy 127.0.0.1:4444 http://0xff.i2p + command | curl -T - --proxy 127.0.0.1:4444 {{ fhost_url }} Upload command output with stderr: - command 2>&1 | curl -T - --proxy 127.0.0.1:4444 http://0xff.i2p + command 2>&1 | curl -T - --proxy 127.0.0.1:4444 {{ fhost_url }} Or you can shorten URLs: curl --proxy 127.0.0.1:4444 -F'shorten=http://example.com/some/long/url' {{ fhost_url }}