项目作者: pinpox

项目描述 :
A Server for the Gopher protocol written in Go
高级语言: Go
项目地址: git://github.com/pinpox/gopherlix.git
创建时间: 2020-01-27T15:02:31Z
项目社区:https://github.com/pinpox/gopherlix

开源协议:GNU General Public License v3.0

下载


Build Status
GoDoc
Go Report Card
codecov

gopherlix

A Server for the Gopher protocol, written in the Go.



Usage

Quickstart

Installation

Just clone the repository and run go build in it.

  1. git clone https://github.com/binaryplease/gopherlix.git
  2. cd gopherlix
  3. go build

Basic configuration

  1. [paths]
  2. content = "data/content"
  3. templates = "data/templates"
  4. [server]
  5. port = "8000"
  6. domain = "localhost"
  7. host = "0.0.0.0"

The configuration file (config.ini) should be self explanatory. The server
includes some sample pages and should run with it out of the box on port 8000.
You may want to change the port to gophers default port 70

Run the server

Gopherlix will look for the configuration file in the same folder as the server
per defalt.

To start it just run ./gopherlix and start browsing goopher://localhost:8000

Features

Adding content

You can add content in the content directory configured in config.ini.
The templates directory includes templates that can be rendered in inside
other files. The header.gph and footer.gph will be added automatically to
all pages.

Directory listings

A request like gopher://localhost/something will look for
data/content/something and check if it’s a file or a directory.
For a file, the contents of it will be returned. If the requested path is a
directory, it will try to find a file called index.gph in it and display it.

If no index.gph is found in this directory, it will generate a listing with
links to all the directory contents.

Templating

Gopherlix leverages the power of golangs
templates to generate content
dynamically. This allows to include ariables in the form of {{.Variablename}}
in any page that will be replaced accordingly. At the moment the following
variables are suported (more to come in future updates):

Variable Description
{{.Directory}} Path of the current request
{{.ServerName}} Shows the server’s domain name

Contributing

Pull-request, issues, feature-requst and contributions of any kind are very
welcome!