From acb238066021da44ae308b4b4930166ec1a56e78 Mon Sep 17 00:00:00 2001 From: Secret Specter Date: Tue, 1 Aug 2023 07:43:09 -0600 Subject: [PATCH] update readme --- README.md | 8 +++++++- geml.ini | 6 +++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5b6b7b2..4183e18 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Gemini server written in Common Lisp geml requires `cert` and `key` to be configured before it will run. And will have nothing to serve until you configure at least one domain and root. See -[`geml.ini`](./geml.ini) an example. +[`geml.ini`](./geml.ini) as an example. ``` cert = /var/lib/geml/localhost.crt @@ -43,4 +43,10 @@ Start sbcl with proper readline support: `rlwrap sbcl` ; or with a custom settings file location (gemini.server:start-server "/path/to/geml.ini") ``` +### Standalone Executable +- [ ] save-lisp-and-die + +### Systemd + +- [ ] geml.service diff --git a/geml.ini b/geml.ini index 0269f60..5d58b8d 100644 --- a/geml.ini +++ b/geml.ini @@ -1,10 +1,10 @@ ;; host can be a dotted IP address, or a hostname for lookup in the DNS system. ;; see usocket: https://github.com/usocket/usocket#api-definition -host = 0.0.0.0 -port = 1965 +;; host = 0.0.0.0 +;; port = 1965 cert = /var/lib/geml/localhost.crt key = /var/lib/geml/localhost.key [localhost] -root = /home/specter/Code/talon.computer +root = /srv/gmi