blck

ephemeral pastebin/url shortener
git clone https://git.parazyd.org/blck
Log | Files | Refs | README | LICENSE

commit 5a43c8c2660d8ca22a01939cf907c149f54771c8
parent 3e8f814fd63dc4b0dff50faa603286bcf8eaddb5
Author: parazyd <parazyd@dyne.org>
Date:   Tue,  9 Feb 2021 08:58:25 +0100

fixup! Update README.

Diffstat:
MREADME.md | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md @@ -1,14 +1,14 @@ blck ==== -an ephemeral pastebin. you can only retrieve the paste once, and -afterwards it's deleted from the server. +an ephemeral pastebin. you can only retrieve the paste for a short time, +and afterwards it's deleted from the server. installation ------------ -get `python-flask` and execute `blck.py`. +get `flask` and `python-magic`, then execute `blck.py`. if not running in debug mode, you also need `bjoern`. find it at https://github.com/jonashaag/bjoern. @@ -24,7 +24,7 @@ location / { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto https; - proxy_pass http://127.0.0.1:5000; + proxy_pass http://127.0.0.1:13321; } ``` @@ -35,5 +35,5 @@ usage either use the website, or curl: ``` -curl -F 'c=@-' http://blck.cf < file +curl -F 'c=@-' http://whatever.domain < file ```