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 }}