Gemini server written in Common Lisp
Go to file
2021-11-14 10:32:24 -06:00
src Initial commit 2021-11-14 10:28:12 -06:00
geml.asd Initial commit 2021-11-14 10:28:12 -06:00
LICENSE Create LICENSE 2021-11-14 10:29:50 -06:00
README.org Add usage to readme 2021-11-14 10:32:24 -06:00

geml

Gemini server written in Common Lisp

Usage

(gemini.server:start-server "ssl.crt" "rsa.key")

Generate Self-Signed SSL Certificate

openssl req -x509 -out localhost.crt -keyout localhost.key -newkey rsa:2048 -nodes -sha256 -subj '/CN=localhost' -extensions EXT \
        -config <(printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")