1
0
Fork 1
Go to file
Drew DeVault 41c4bfecc7 README.md: add maintenance notice 2023-01-16 13:33:40 +01:00
doc Support REMOTE_USER in CGI 2021-06-17 09:52:50 -04:00
include implement handling of ROUTE_EXACT definitions 2021-01-29 08:55:43 -05:00
src Close some files when too many are open 2022-12-19 12:02:08 +01:00
.gitignore gitignore: add *.5 2020-11-15 12:00:48 -05:00
COPYING Initial commit 2020-09-23 10:21:44 -04:00
Makefile Documentation 2020-09-26 16:45:06 -04:00
README.md README.md: add maintenance notice 2023-01-16 13:33:40 +01:00
config.ini config.ini: change suggested root directory 2020-09-26 17:46:56 -04:00
config.sh Implement MIME database support 2020-10-28 12:38:32 -04:00
configure Initial pass on regex routing support 2020-10-29 22:47:56 -04:00

README.md

gmnisrv

Notice: this project is no longer maintained.

gmnisrv is a simple Gemini protocol server.

Installation

Dependencies:

  • A C11 compiler and a POSIX-like system
  • OpenSSL
  • Mailcap (for /etc/mime.types)
  • scdoc (optional)
$ mkdir build
$ cd build
$ ../configure --prefix=/usr
$ make
# make install

Configuration

By default it reads from /etc/gmnisrv.ini, but this can be changed by passing the -C flag to the gmnisrv daemon. A sample config.ini is provided at /usr/share/gmnisrv/gmnisrv.ini:

# Space-separated list of hosts
listen=0.0.0.0:1965 [::]:1965

[:tls]
# Path to store certificates on disk
store=/var/lib/gemini/certs

# Optional details for new certificates
organization=gmnisrv user

[example.org]
root=/srv/gemini/example.org

[example.com]
root=/srv/gemini/example.com

For full details on gmnisrv configuration, consult the gmnisrv(5) manual page.

Usage

See gmnisrv(1).