-- Leo's gemini proxy

-- Connecting to gemigraph.rijndael.cc:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini

What's this?

This is page host for Gemini, like telegra.ph

It supports HTTP/HTML access as well, but uses only Gemtext format for writing page


How to add page?

You can open HTTP version of this site and submit a form

Alternatively, there is curl-based client


#! /bin/sh
set -euo pipefail

if [ "$#" -eq 0 ]; then
        echo "Usage: $0 <title>" >&2
        echo "Page content will be read from stdin"
        exit 1
fi

GEMIGRAPH_HOST=gemigraph.rijndael.cc

path=$(curl -X POST https://${GEMIGRAPH_HOST}/submit \
        --data-urlencode "title=$*" \
        --data-urlencode "text=$(cat)" \
        --silent --show-error)

echo "${GEMIGRAPH_HOST}${path}"

-- Response ended

-- Page fetched on Sun Apr 28 01:42:41 2024