Problem with geminid config file added by avalos on Sat Sep 5 22:01:18 2020

(import openssl geminid)

(define ciphers
  "ECDH+CHACHA20:ECDH+AESGCM:ECDH+AES256:ECDH+AES128:!aNULL:!SHA1")

(define listener
  (ssl-listen* port: 1965
               protocol: 'tlsv12
               cipher-list: ciphers
               certificate: "/etc/letsencrypt/live/avalos.me/cert.pem"
               private-key: "/etc/letsencrypt/live/avalos.me/privkey.pem"
               Private-key-type: 'prime256v1))

(root-path "/var/gemini/docs")
(start-server listener)