update readme
This commit is contained in:
parent
4137a96a77
commit
acb2380660
|
@ -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
|
||||
|
|
6
geml.ini
6
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
|
||||
|
|
Loading…
Reference in a new issue