diff options
| author | Jan Wolff <janw@mailbox.org> | 2020-05-17 15:18:50 +0000 |
|---|---|---|
| committer | Jan Wolff <janw@mailbox.org> | 2020-05-17 15:18:50 +0000 |
| commit | 72c1e3c8132a8269833396ab955586185e7b0e58 (patch) | |
| tree | 395892d019d8300398bed25b89c00b5e13b07e52 /doc | |
| parent | 39885844a2b7c0fdf03e501379cdc9acd6cd6f30 (diff) | |
config file support
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/sheldond.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/sheldond.conf b/doc/sheldond.conf new file mode 100644 index 0000000..87610d1 --- /dev/null +++ b/doc/sheldond.conf @@ -0,0 +1,17 @@ +# no virtual host support yet, so this is actually the only host +default_host = localhost + +# should be self explanatory +gem_root = /var/gemini/ + +# you can define as many of these as you like +listen = [::1]:1965 +listen = 127.0.0.1:1965 + +# privilige level for the server to drop to after initializing +user = gem-data +group = gem-data + +# certificate data MUST be in PEM format right now +cert_key = /etc/ssl/private/gemini-key.pem +cert_chain = /etc/ssl/certs/gemini-chain.pem |
