Agis will be a Spartan protocol server written in Rust. It is currently under active development but is not yet functional.
Agis is written in Rust and requires the Cargo build tool. ```Sh
cargo build --release ```
The configuration file is in Ron format, which
should be very simple to grasp if you are used to any programming languages with
braces (such as C). There is an example config file with plenty of comments in
conf/config.ron
. This file can be copied to /etc/agis/config.ron
and edited
to match your actual desired configuration.
None
, access will be logged to stdout. If it
is set to Some(path)
access will be logged to that file.Each vhost is looked up by a key, which is the domain name it will serve. - name - The domain name for which to serve requests. - root - The path to the root directory of this server's files. - directories - Path specific directives.
Each directive is looked up via a key, which is the path which it applies to. - Allow - whether or not to allow access to this path. If not set, all files in the document tree under the server root are allowed. If set to false, all files under this path are disallowed. - Alias - Serves files requested for this path from a different path. This is handled by the server transparently to the client. - Redirect - Any request for this specific path will be sent a redirect to the new location, to be handled by the client. - Cgi - Any requests under this directory will be passed to the cgi program which is the direct child of the directory. If the Cgi directive is given the path '/cgi-bin/', and a client requests '/cgi-bin/foo/bar/baz.gmi?fizzbuzz=true' then the program located at '/server-root/cgi-bin/foo' will be run and given the rest of the path and query as environment variables. This implementation is a subset of CGI 1.1 with http specific environment vars removed.
The default configuration runs the server as user 'agis' and group 'agis'. You
will need to create that user and group on your system or Agis will not run.
Sh
useradd -r -s /sbin/nologin agis
If you are running Linux with Systemd init, there is a unit file included in the conf/ subdirectory. It can be copied into /etc/systemd/system and then started and stopped like any other service.
If you are on a Linux system that does not use systemd, or bsd, it should be straitforward to write your own init script. Agis does not currently support any options at startup time, getting all of it's configuration properties from it's config file. So just invoke the binary without options.